Skip to content

Commit

Permalink
use TLSv1_3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Nov 22, 2023
1 parent e7fd47d commit 2efdd41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _es_config() -> Dict[str, Any]:
return config

# Include SSL settings if using https
config["ssl_version"] = ssl.TLSVersion.TLSv1_2 # type: ignore
config["ssl_version"] = ssl.TLSVersion.TLSv1_3 # type: ignore
config["verify_certs"] = os.getenv("ES_VERIFY_CERTS", "true").lower() != "false" # type: ignore

# Include CA Certificates if verifying certs
Expand Down

0 comments on commit 2efdd41

Please sign in to comment.