diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-10-24 09:53:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-24 09:53:57 +0100 |
commit | e0b9d5f0aff02681e0af59c9866d3ee74994bb2c (patch) | |
tree | e3f4d728e70f301ad0f989d35b463043f5ba06c6 /synapse/handlers/receipts.py | |
parent | Merge pull request #4063 from matrix-org/erikj/cleaup_alias_creation (diff) | |
parent | Fix start_pushers vs _start_pushers confusion (diff) | |
download | synapse-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.py | 2 |
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, ) |