summary refs log tree commit diff
path: root/synapse/handlers/federation.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-08-17 16:21:49 +0100
committerGitHub <noreply@github.com>2018-08-17 16:21:49 +0100
commitc144252a8c93b34d9610e0b96940863a9b661604 (patch)
tree0b1946938804bd72bcd7e0083bee67999b2c9ba2 /synapse/handlers/federation.py
parentIntegrate presence from hotfixes (#3694) (diff)
parentchangelog (diff)
downloadsynapse-c144252a8c93b34d9610e0b96940863a9b661604.tar.xz
Merge pull request #3710 from matrix-org/rav/logcontext_for_pusher_updates
Fix logcontexts for running pushers
Diffstat (limited to 'synapse/handlers/federation.py')
-rw-r--r--synapse/handlers/federation.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py
index f38b393e4a..3dd107a285 100644
--- a/synapse/handlers/federation.py
+++ b/synapse/handlers/federation.py
@@ -2386,8 +2386,7 @@ class FederationHandler(BaseHandler):
             extra_users=extra_users
         )
 
-        logcontext.run_in_background(
-            self.pusher_pool.on_new_notifications,
+        self.pusher_pool.on_new_notifications(
             event_stream_id, max_stream_id,
         )