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 d1aba9b commit 8f711f8Copy full SHA for 8f711f8
packages/service-library/src/servicelib/aiohttp/tracing.py
@@ -109,7 +109,9 @@ def _startup(
109
)
110
111
# Add the span processor to the tracer provider
112
- tracing_data.tracer_provider.add_span_processor(_create_span_processor(tracing_destination)) # type: ignore[attr-defined] # https://github.com/open-telemetry/opentelemetry-python/issues/3713
+ tracing_data.tracer_provider.add_span_processor(
113
+ _create_span_processor(tracing_destination)
114
+ )
115
# Instrument aiohttp server
116
# Explanation for custom middleware call DK 10/2024:
117
# OpenTelemetry Aiohttp autoinstrumentation is meant to be used by only calling `AioHttpServerInstrumentor().instrument()`
0 commit comments