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 292d4bf commit b3804b5Copy full SHA for b3804b5
stac_fastapi/opensearch/stac_fastapi/opensearch/database_logic.py
@@ -210,7 +210,7 @@ async def create_collection_index() -> None:
210
"""
211
client = AsyncSearchSettings().create_client
212
213
- search_body: dict[str, Any] = {
+ search_body: Dict[str, Any] = {
214
"aliases": {COLLECTIONS_INDEX: {}},
215
}
216
@@ -240,7 +240,7 @@ async def create_item_index(collection_id: str):
240
241
242
index_name = index_by_collection_id(collection_id)
243
244
"aliases": {index_name: {}},
245
246
0 commit comments