summary refs log tree commit diff
path: root/synapse/replication/slave/storage/pushers.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-08-26 13:15:20 +0100
committerGitHub <noreply@github.com>2020-08-26 13:15:20 +0100
commite3c91a3c5593c52298a7c511737d3e0eec4135ae (patch)
tree761c945817e6a837dd99f2549228fa40f725ebe7 /synapse/replication/slave/storage/pushers.py
parentConvert simple_select_one and simple_select_one_onecol to async (#8162) (diff)
downloadsynapse-e3c91a3c5593c52298a7c511737d3e0eec4135ae.tar.xz
Make SlavedIdTracker.advance have same interface as MultiWriterIDGenerator (#8171)
Diffstat (limited to 'synapse/replication/slave/storage/pushers.py')
-rw-r--r--synapse/replication/slave/storage/pushers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/slave/storage/pushers.py b/synapse/replication/slave/storage/pushers.py
index 63300e5da6..9da218bfe8 100644
--- a/synapse/replication/slave/storage/pushers.py
+++ b/synapse/replication/slave/storage/pushers.py
@@ -34,5 +34,5 @@ class SlavedPusherStore(PusherWorkerStore, BaseSlavedStore):
 
     def process_replication_rows(self, stream_name, instance_name, token, rows):
         if stream_name == PushersStream.NAME:
-            self._pushers_id_gen.advance(token)
+            self._pushers_id_gen.advance(instance_name, token)
         return super().process_replication_rows(stream_name, instance_name, token, rows)