summary refs log tree commit diff
path: root/synapse/replication/tcp
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2023-11-24 13:42:38 +0000
committerGitHub <noreply@github.com>2023-11-24 13:42:38 +0000
commitc3627d0f99ed5a23479305dc2bd0e71ca25ce2b1 (patch)
tree32de9947085bd63d7984025704bd2eb29e33335f /synapse/replication/tcp
parentKeep track of `user_ips` and `monthly_active_users` when delegating auth (#16... (diff)
downloadsynapse-c3627d0f99ed5a23479305dc2bd0e71ca25ce2b1.tar.xz
Correctly read to-device stream pos on SQLite (#16682)
Diffstat (limited to 'synapse/replication/tcp')
-rw-r--r--synapse/replication/tcp/streams/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py
index 1f6402c2da..7514429d99 100644
--- a/synapse/replication/tcp/streams/_base.py
+++ b/synapse/replication/tcp/streams/_base.py
@@ -621,7 +621,7 @@ class ToDeviceStream(_StreamFromIdGen):
         super().__init__(
             hs.get_instance_name(),
             store.get_all_new_device_messages,
-            store._device_inbox_id_gen,
+            store._to_device_msg_id_gen,
         )