diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-08-17 16:22:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-17 16:22:07 +0100 |
commit | 3cef867cc1b6a1a5db031ad89064cea5553e632b (patch) | |
tree | 62ae11f342bc617a6c09dc2c9c3a509ac6d2edd2 /synapse/app/synchrotron.py | |
parent | Merge pull request #3710 from matrix-org/rav/logcontext_for_pusher_updates (diff) | |
parent | changelog (diff) | |
download | synapse-3cef867cc1b6a1a5db031ad89064cea5553e632b.tar.xz |
Merge pull request #3709 from matrix-org/rav/logcontext_for_replication_commands
Logcontexts for replication command handlers
Diffstat (limited to 'synapse/app/synchrotron.py')
-rw-r--r-- | synapse/app/synchrotron.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/app/synchrotron.py b/synapse/app/synchrotron.py index cade09d60e..27e1998660 100644 --- a/synapse/app/synchrotron.py +++ b/synapse/app/synchrotron.py @@ -338,8 +338,9 @@ class SyncReplicationHandler(ReplicationClientHandler): self.presence_handler = hs.get_presence_handler() self.notifier = hs.get_notifier() + @defer.inlineCallbacks def on_rdata(self, stream_name, token, rows): - super(SyncReplicationHandler, self).on_rdata(stream_name, token, rows) + yield super(SyncReplicationHandler, self).on_rdata(stream_name, token, rows) run_in_background(self.process_and_notify, stream_name, token, rows) def get_streams_to_replicate(self): |