stac-fastapi-opensearch 6.5.0__tar.gz → 6.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/PKG-INFO +1 -1
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/setup.py +2 -2
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/database_logic.py +0 -2
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/version.py +1 -1
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/PKG-INFO +1 -1
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/requires.txt +2 -2
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/README.md +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/setup.cfg +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/__init__.py +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/app.py +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/config.py +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/SOURCES.txt +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/dependency_links.txt +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/entry_points.txt +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/not-zip-safe +0 -0
- {stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi_opensearch.egg-info/top_level.txt +0 -0
|
@@ -6,8 +6,8 @@ with open("README.md") as f:
|
|
|
6
6
|
desc = f.read()
|
|
7
7
|
|
|
8
8
|
install_requires = [
|
|
9
|
-
"stac-fastapi-core==6.5.
|
|
10
|
-
"sfeos-helpers==6.5.
|
|
9
|
+
"stac-fastapi-core==6.5.1",
|
|
10
|
+
"sfeos-helpers==6.5.1",
|
|
11
11
|
"opensearch-py~=2.8.0",
|
|
12
12
|
"opensearch-py[async]~=2.8.0",
|
|
13
13
|
"uvicorn~=0.23.0",
|
|
@@ -293,7 +293,6 @@ class DatabaseLogic(BaseDatabaseLogic):
|
|
|
293
293
|
query_parts.append(search_dict["query"])
|
|
294
294
|
|
|
295
295
|
except Exception as e:
|
|
296
|
-
logger = logging.getLogger(__name__)
|
|
297
296
|
logger.error(f"Error converting query to OpenSearch: {e}")
|
|
298
297
|
# If there's an error, add a query that matches nothing
|
|
299
298
|
query_parts.append({"bool": {"must_not": {"match_all": {}}}})
|
|
@@ -365,7 +364,6 @@ class DatabaseLogic(BaseDatabaseLogic):
|
|
|
365
364
|
try:
|
|
366
365
|
matched = count_task.result().get("count")
|
|
367
366
|
except Exception as e:
|
|
368
|
-
logger = logging.getLogger(__name__)
|
|
369
367
|
logger.error(f"Count task failed: {e}")
|
|
370
368
|
|
|
371
369
|
return collections, next_token, matched
|
{stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/version.py
RENAMED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""library version."""
|
|
2
|
-
__version__ = "6.5.
|
|
2
|
+
__version__ = "6.5.1"
|
|
File without changes
|
|
File without changes
|
{stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/__init__.py
RENAMED
|
File without changes
|
{stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/app.py
RENAMED
|
File without changes
|
{stac_fastapi_opensearch-6.5.0 → stac_fastapi_opensearch-6.5.1}/stac_fastapi/opensearch/config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|