diff options
author | Erik Johnston <erik@matrix.org> | 2018-05-11 15:30:11 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-05-11 15:30:11 +0100 |
commit | 6406b70aebd61ecddf61e45196d7cb13428b509e (patch) | |
tree | c5787b2d03cfca9cda557a501473d34f2600587d /synapse/storage/receipts.py | |
parent | Merge pull request #3199 from matrix-org/erikj/pagination_sync (diff) | |
download | synapse-6406b70aebd61ecddf61e45196d7cb13428b509e.tar.xz |
Use stream rather depth ordering for push actions
This simplifies things as it is, but will also allow us to change the way we traverse topologically without having to update the way push actions work.
Diffstat (limited to 'synapse/storage/receipts.py')
-rw-r--r-- | synapse/storage/receipts.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/receipts.py b/synapse/storage/receipts.py index 63997ed449..2f95e7e82a 100644 --- a/synapse/storage/receipts.py +++ b/synapse/storage/receipts.py @@ -407,7 +407,6 @@ class ReceiptsStore(ReceiptsWorkerStore): txn, room_id=room_id, user_id=user_id, - topological_ordering=topological_ordering, stream_ordering=stream_ordering, ) |