summary refs log tree commit diff
path: root/synapse/push/pusherpool.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-08-03 16:22:34 -0700
committerAndrew Morgan <andrew@amorgan.xyz>2020-08-03 16:22:34 -0700
commitc6011c3ce8b4d07a6ce21b983ec1cc504e8cc722 (patch)
tree23827d1ba94097d74d59e3b9a917adbff29ce942 /synapse/push/pusherpool.py
parentMerge commit '231252516' into dinsic (diff)
parentRefactor getting replication updates from database. (#7636) (diff)
downloadsynapse-c6011c3ce8b4d07a6ce21b983ec1cc504e8cc722.tar.xz
Merge commit 'f6f7511a4' into dinsic
* commit 'f6f7511a4':
  Refactor getting replication updates from database. (#7636)
Diffstat (limited to 'synapse/push/pusherpool.py')
-rw-r--r--synapse/push/pusherpool.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py

index 88d203aa44..f6a5458681 100644 --- a/synapse/push/pusherpool.py +++ b/synapse/push/pusherpool.py
@@ -215,11 +215,9 @@ class PusherPool: try: # Need to subtract 1 from the minimum because the lower bound here # is not inclusive - updated_receipts = yield self.store.get_all_updated_receipts( + users_affected = yield self.store.get_users_sent_receipts_between( min_stream_id - 1, max_stream_id ) - # This returns a tuple, user_id is at index 3 - users_affected = {r[3] for r in updated_receipts} for u in users_affected: if u in self.pushers: