diff options
author | Erik Johnston <erik@matrix.org> | 2020-08-26 13:15:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 13:15:20 +0100 |
commit | e3c91a3c5593c52298a7c511737d3e0eec4135ae (patch) | |
tree | 761c945817e6a837dd99f2549228fa40f725ebe7 /synapse/replication/slave/storage/receipts.py | |
parent | Convert simple_select_one and simple_select_one_onecol to async (#8162) (diff) | |
download | synapse-e3c91a3c5593c52298a7c511737d3e0eec4135ae.tar.xz |
Make SlavedIdTracker.advance have same interface as MultiWriterIDGenerator (#8171)
Diffstat (limited to 'synapse/replication/slave/storage/receipts.py')
-rw-r--r-- | synapse/replication/slave/storage/receipts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/receipts.py b/synapse/replication/slave/storage/receipts.py index 17ba1f22ac..5c2986e050 100644 --- a/synapse/replication/slave/storage/receipts.py +++ b/synapse/replication/slave/storage/receipts.py @@ -46,7 +46,7 @@ class SlavedReceiptsStore(ReceiptsWorkerStore, BaseSlavedStore): def process_replication_rows(self, stream_name, instance_name, token, rows): if stream_name == ReceiptsStream.NAME: - self._receipts_id_gen.advance(token) + self._receipts_id_gen.advance(instance_name, token) for row in rows: self.invalidate_caches_for_receipt( row.room_id, row.receipt_type, row.user_id |