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 bbcc3d3 commit 5bcde83Copy full SHA for 5bcde83
opentelemetry-instrumentation/src/opentelemetry/instrumentation/utils.py
@@ -198,7 +198,10 @@ def _initialize(cls):
198
if opt_in_list:
199
# Process http opt-in
200
# http/dup takes priority over http
201
- if _OpenTelemetryStabilityMode.HTTP_DUP.value in opt_in_list:
+ if (
202
+ _OpenTelemetryStabilityMode.HTTP_DUP.value
203
+ in opt_in_list
204
+ ):
205
http_opt_in = _OpenTelemetryStabilityMode.HTTP_DUP
206
elif _OpenTelemetryStabilityMode.HTTP.value in opt_in_list:
207
http_opt_in = _OpenTelemetryStabilityMode.HTTP
0 commit comments