We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc1a2cb commit 399bcabCopy full SHA for 399bcab
scripts/reindex_opensearch.py
@@ -67,7 +67,9 @@ async def run():
67
68
for collection in collections["hits"]["hits"]:
69
70
- item_indexes = await client.indices.get_alias(name=f"{ITEMS_INDEX_PREFIX}{collection['_id']}*")
+ item_indexes = await client.indices.get_alias(
71
+ name=f"{ITEMS_INDEX_PREFIX}{collection['_id']}*"
72
+ )
73
74
for item_index, aliases in item_indexes.items():
75
item_index_name, version = item_index.rsplit("-", 1)
0 commit comments