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 142ad7b commit dfbdde1Copy full SHA for dfbdde1
airbyte_cdk/manifest_server/app.py
@@ -1,8 +1,8 @@
1
import os
2
3
-if os.getenv("DD_ENABLED") == "true":
+if os.getenv("DD_ENABLED", "false").lower() == "true":
4
# Auto-instrumentation should be imported as early as possible.
5
- import ddtrace.auto
+ import ddtrace.auto # noqa: F401
6
7
from fastapi import FastAPI
8
airbyte_cdk/manifest_server/cli/_common.py
@@ -7,6 +7,7 @@
# Import server dependencies with graceful fallback
9
try:
10
+ import ddtrace # noqa: F401
11
import fastapi # noqa: F401
12
import uvicorn # noqa: F401
13
0 commit comments