Skip to content

Commit

Permalink
fix: align env-var casing
Browse files Browse the repository at this point in the history
  • Loading branch information
CircleCI committed Sep 19, 2024
1 parent 81fe475 commit bcabbe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lumigo_opentelemetry/instrumentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, instrumentation_id: str):

def is_applicable(self) -> bool:
tracing_enabled = (
os.environ.get("LUMIGO_ENABLE_TRACES", "TRUE").upper() == "TRUE"
os.environ.get("LUMIGO_ENABLE_TRACES", "true").lower() == "true"
)
if not tracing_enabled:
return False
Expand Down

0 comments on commit bcabbe5

Please sign in to comment.