diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-03-15 17:41:06 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-03-15 17:42:03 +0000 |
commit | 12904932c41c73714543b817157f09073fcc2625 (patch) | |
tree | 052efa995df2f96cd1aae693025cdfc1195a8129 /synapse/notifier.py | |
parent | Add replication stream for pushers (diff) | |
download | synapse-12904932c41c73714543b817157f09073fcc2625.tar.xz |
Hook up adding a pusher to the notifier for replication.
Diffstat (limited to 'synapse/notifier.py')
-rw-r--r-- | synapse/notifier.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/notifier.py b/synapse/notifier.py index 9b69b0333a..f00cd8c588 100644 --- a/synapse/notifier.py +++ b/synapse/notifier.py @@ -282,6 +282,12 @@ class Notifier(object): self.notify_replication() + def on_new_replication_data(self): + """Used to inform replication listeners that something has happend + without waking up any of the normal user event streams""" + with PreserveLoggingContext(): + self.notify_replication() + @defer.inlineCallbacks def wait_for_events(self, user_id, timeout, callback, room_ids=None, from_token=StreamToken.START): |