Skip to content

Commit e7ccfd5

Browse files
fix: default value for OPENLAYER_VERIFY_SSL env var
1 parent 68deb6f commit e7ccfd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/openlayer/lib/tracing/tracer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
_publish = utils.get_env_variable("OPENLAYER_DISABLE_PUBLISH") not in TRUE_LIST
2323
_verify_ssl = (
24-
utils.get_env_variable("OPENLAYER_VERIFY_SSL", "true").lower() in TRUE_LIST
25-
)
24+
utils.get_env_variable("OPENLAYER_VERIFY_SSL") or "true"
25+
).lower() in TRUE_LIST
2626
_client = None
2727
if _publish:
2828
if _verify_ssl:

0 commit comments

Comments
 (0)