diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-10-24 09:53:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-24 09:53:57 +0100 |
commit | e0b9d5f0aff02681e0af59c9866d3ee74994bb2c (patch) | |
tree | e3f4d728e70f301ad0f989d35b463043f5ba06c6 /synapse/handlers/message.py | |
parent | Merge pull request #4063 from matrix-org/erikj/cleaup_alias_creation (diff) | |
parent | Fix start_pushers vs _start_pushers confusion (diff) | |
download | synapse-e0b9d5f0aff02681e0af59c9866d3ee74994bb2c.tar.xz |
Merge pull request #4075 from matrix-org/rav/fix_pusher_logcontexts
Clean up the way logcontexts and threads work in the pushers
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r-- | synapse/handlers/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py index 4954b23a0d..6c4fcfb10a 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py @@ -779,7 +779,7 @@ class EventCreationHandler(object): event, context=context ) - self.pusher_pool.on_new_notifications( + yield self.pusher_pool.on_new_notifications( event_stream_id, max_stream_id, ) |