diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-22 10:57:56 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-22 11:54:51 +0100 |
commit | 8810685df936ba60e0e9d36c9371c20f305c9126 (patch) | |
tree | cf5106c05f48f7b65c3ca99ca6f7647b12db67e6 /synapse/handlers/events.py | |
parent | Move consent config parsing into ConsentConfig (diff) | |
download | synapse-8810685df936ba60e0e9d36c9371c20f305c9126.tar.xz |
Stub out ServerNoticesSender on the workers
... and have the sync endpoints call it directly rather than obsure indirection via PresenceHandler
Diffstat (limited to 'synapse/handlers/events.py')
-rw-r--r-- | synapse/handlers/events.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/handlers/events.py b/synapse/handlers/events.py index d3685fb12a..8bc642675f 100644 --- a/synapse/handlers/events.py +++ b/synapse/handlers/events.py @@ -48,6 +48,7 @@ class EventStreamHandler(BaseHandler): self.notifier = hs.get_notifier() self.state = hs.get_state_handler() + self._server_notices_sender = hs.get_server_notices_sender() @defer.inlineCallbacks @log_function @@ -58,6 +59,10 @@ class EventStreamHandler(BaseHandler): If `only_keys` is not None, events from keys will be sent down. """ + + # send any outstanding server notices to the user. + yield self._server_notices_sender.on_user_syncing(auth_user_id) + auth_user = UserID.from_string(auth_user_id) presence_handler = self.hs.get_presence_handler() |