summary refs log tree commit diff
path: root/synapse/handlers/receipts.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-10-24 09:53:57 +0100
committerGitHub <noreply@github.com>2018-10-24 09:53:57 +0100
commite0b9d5f0aff02681e0af59c9866d3ee74994bb2c (patch)
treee3f4d728e70f301ad0f989d35b463043f5ba06c6 /synapse/handlers/receipts.py
parentMerge pull request #4063 from matrix-org/erikj/cleaup_alias_creation (diff)
parentFix start_pushers vs _start_pushers confusion (diff)
downloadsynapse-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/receipts.py')
-rw-r--r--synapse/handlers/receipts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/receipts.py b/synapse/handlers/receipts.py
index a6f3181f09..4c2690ba26 100644
--- a/synapse/handlers/receipts.py
+++ b/synapse/handlers/receipts.py
@@ -119,7 +119,7 @@ class ReceiptsHandler(BaseHandler):
             "receipt_key", max_batch_id, rooms=affected_room_ids
         )
         # Note that the min here shouldn't be relied upon to be accurate.
-        self.hs.get_pusherpool().on_new_receipts(
+        yield self.hs.get_pusherpool().on_new_receipts(
             min_batch_id, max_batch_id, affected_room_ids,
         )