diff --git a/synapse/util/__init__.py b/synapse/util/__init__.py index 9ad613b8f19e16d81cbc87a4f08676b09124f3c3..e57fb0e9142f0ee80dcb8fab365029a05e0510c1 100644 --- a/synapse/util/__init__.py +++ b/synapse/util/__init__.py @@ -38,7 +38,7 @@ class Clock(object): def call_later(self, delay, callback): current_context = LoggingContext.current_context() def wrapped_callback(): - current_context.thread_local.current_context = current_context + LoggingContext.thread_local.current_context = current_context callback() return reactor.callLater(delay, wrapped_callback)