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 435f55f commit 5058808Copy full SHA for 5058808
src/openlayer/lib/tracing/tracer.py
@@ -20,7 +20,9 @@
20
TRUE_LIST = ["true", "on", "1"]
21
22
_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
+_verify_ssl = (
24
+ utils.get_env_variable("OPENLAYER_VERIFY_SSL", "true").lower() in TRUE_LIST
25
+)
26
_client = None
27
if _publish:
28
if _verify_ssl:
0 commit comments