summary refs log tree commit diff
path: root/synapse/push/pusherpool.py
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2020-12-15 11:26:13 -0500
committerPatrick Cloke <patrickc@matrix.org>2020-12-15 11:26:13 -0500
commit863359a04fe36cfa63aa92392acb7510d76f854d (patch)
tree472ffae0e1b40905f7a0d0a18e1f20e66e4214a9 /synapse/push/pusherpool.py
parentMerge branch 'develop' into matrix-org-hotfixes (diff)
parentFix handling of stream tokens for push. (#8943) (diff)
downloadsynapse-863359a04fe36cfa63aa92392acb7510d76f854d.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/push/pusherpool.py')
-rw-r--r--synapse/push/pusherpool.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py

index 9fcc0b8a64..9c12d81cfb 100644 --- a/synapse/push/pusherpool.py +++ b/synapse/push/pusherpool.py
@@ -129,9 +129,8 @@ class PusherPool: ) # create the pusher setting last_stream_ordering to the current maximum - # stream ordering in event_push_actions, so it will process - # pushes from this point onwards. - last_stream_ordering = await self.store.get_latest_push_action_stream_ordering() + # stream ordering, so it will process pushes from this point onwards. + last_stream_ordering = self.store.get_room_max_stream_ordering() await self.store.add_pusher( user_id=user_id,