Skip to content

Commit eded41c

Browse files
fix: verify SSL by default and disable it via env var
1 parent 435f55f commit eded41c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openlayer/lib/tracing/tracer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
TRUE_LIST = ["true", "on", "1"]
2121

2222
_publish = utils.get_env_variable("OPENLAYER_DISABLE_PUBLISH") not in TRUE_LIST
23-
_verify_ssl = utils.get_env_variable("OPENLAYER_VERIFY_SSL").lower() in TRUE_LIST
23+
_verify_ssl = utils.get_env_variable("OPENLAYER_DISABLE_SSL_VERIFY") not in TRUE_LIST
2424
_client = None
2525
if _publish:
2626
if _verify_ssl:

0 commit comments

Comments
 (0)