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 fb64209 + e893be8 commit 41b28b5Copy full SHA for 41b28b5
stac_fastapi/opensearch/stac_fastapi/opensearch/config.py
@@ -27,7 +27,7 @@ def _es_config() -> Dict[str, Any]:
27
return config
28
29
# Include SSL settings if using https
30
- config["ssl_version"] = ssl.TLSVersion.TLSv1_3 # type: ignore
+ config["ssl_version"] = ssl.PROTOCOL_SSLv23 # type: ignore
31
config["verify_certs"] = os.getenv("ES_VERIFY_CERTS", "true").lower() != "false" # type: ignore
32
33
# Include CA Certificates if verifying certs
0 commit comments