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/appservice.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/appservice.py')
-rw-r--r-- | synapse/app/appservice.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/app/appservice.py b/synapse/app/appservice.py index 9a37384fb7..3348a8ec6d 100644 --- a/synapse/app/appservice.py +++ b/synapse/app/appservice.py @@ -117,8 +117,9 @@ class ASReplicationHandler(ReplicationClientHandler): super(ASReplicationHandler, self).__init__(hs.get_datastore()) self.appservice_handler = hs.get_application_service_handler() + @defer.inlineCallbacks def on_rdata(self, stream_name, token, rows): - super(ASReplicationHandler, self).on_rdata(stream_name, token, rows) + yield super(ASReplicationHandler, self).on_rdata(stream_name, token, rows) if stream_name == "events": max_stream_id = self.store.get_room_max_stream_ordering() |