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 e212509 commit 662f0bbCopy full SHA for 662f0bb
stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/config.py
@@ -57,8 +57,8 @@ def _es_config() -> Dict[str, Any]:
57
config["http_auth"] = (u, p)
58
59
# Include timeout setting if set
60
- if timeout := os.getenv("ES_TIMEOUT"):
61
- config["timeout"] = timeout
+ if request_timeout := os.getenv("ES_TIMEOUT"):
+ config["request_timeout"] = request_timeout
62
63
# Explicitly exclude SSL settings when not using SSL
64
if not use_ssl:
0 commit comments