mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 21:43:50 +01:00
opentracing: use a consistent name for background processes (#10135)
... otherwise we tend to get a namespace clash between the bg process and the functions that it calls.
This commit is contained in:
parent
beb251e3ee
commit
b2557cbf42
3 changed files with 5 additions and 2 deletions
1
changelog.d/10135.misc
Normal file
1
changelog.d/10135.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
OpenTracing: use a consistent name for background processes.
|
|
@ -337,6 +337,7 @@ def ensure_active_span(message, ret=None):
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def noop_context_manager(*args, **kwargs):
|
def noop_context_manager(*args, **kwargs):
|
||||||
"""Does exactly what it says on the tin"""
|
"""Does exactly what it says on the tin"""
|
||||||
|
# TODO: replace with contextlib.nullcontext once we drop support for Python 3.6
|
||||||
yield
|
yield
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -204,11 +204,12 @@ def run_as_background_process(desc: str, func, *args, bg_start_span=True, **kwar
|
||||||
|
|
||||||
with BackgroundProcessLoggingContext(desc, count) as context:
|
with BackgroundProcessLoggingContext(desc, count) as context:
|
||||||
try:
|
try:
|
||||||
ctx = noop_context_manager()
|
|
||||||
if bg_start_span:
|
if bg_start_span:
|
||||||
ctx = start_active_span(
|
ctx = start_active_span(
|
||||||
desc, tags={SynapseTags.REQUEST_ID: str(context)}
|
f"bgproc.{desc}", tags={SynapseTags.REQUEST_ID: str(context)}
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
|
ctx = noop_context_manager()
|
||||||
with ctx:
|
with ctx:
|
||||||
return await maybe_awaitable(func(*args, **kwargs))
|
return await maybe_awaitable(func(*args, **kwargs))
|
||||||
except Exception:
|
except Exception:
|
||||||
|
|
Loading…
Reference in a new issue