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.
2 parents 8b20bd5 + f99c6e6 commit 455e362Copy full SHA for 455e362
CHANGELOG.md
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
15
16
### Fixed
17
18
+- Fix unawaited coroutine in `stac_fastapi.core.core`. [#551](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/551)
19
+
20
### Removed
21
22
### Updated
stac_fastapi/core/stac_fastapi/core/core.py
@@ -786,7 +786,7 @@ async def post_search(
786
787
body_limit = None
788
try:
789
- if request.method == "POST" and request.body():
+ if request.method == "POST" and await request.body():
790
body_data = await request.json()
791
body_limit = body_data.get("limit")
792
except Exception:
0 commit comments