File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/service-library/src/servicelib Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 22from contextlib import contextmanager
33from contextvars import Token
44from functools import wraps
5- from typing import Any , TypeAlias
5+ from typing import Any , Final , TypeAlias
66
77import pyinstrument
88from opentelemetry import context as otcontext
99from opentelemetry import trace
1010from opentelemetry .instrumentation .logging import LoggingInstrumentor
11- from servicelib .redis ._client import Final
1211from settings_library .tracing import TracingSettings
1312
1413TracingContext : TypeAlias = otcontext .Context | None
@@ -86,7 +85,7 @@ async def wrapper(*args: Any, **kwargs: Any) -> Any:
8685 profiler .stop ()
8786 span .set_attribute (
8887 _PROFILE_ATTRIBUTE_NAME ,
89- profiler .output_text (unicode = True , color = False , show_all = True ),
88+ profiler .output_text (unicode = True , color = False ),
9089 )
9190
9291 return wrapper
You can’t perform that action at this time.
0 commit comments