Skip to content

Commit 93e2b97

Browse files
committed
fix: lowercase the index name
1 parent 835c0e3 commit 93e2b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db-connector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13301,7 +13301,7 @@ func SetDatastoreKeyBulk(ctx context.Context, allKeys []CacheKeyData) ([]Datasto
1330113301

1330213302
meta := map[string]map[string]string{
1330313303
"index": {
13304-
"_index": GetESIndexPrefix(nameKey),
13304+
"_index": strings.ToLower(GetESIndexPrefix(nameKey)),
1330513305
"_id": cacheId,
1330613306
},
1330713307
}

0 commit comments

Comments
 (0)