diff options
author | Erik Johnston <erikj@matrix.org> | 2023-10-30 12:27:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 12:27:14 +0000 |
commit | 8c63e932865c0d620c6d5b4be98b9ea3e9f240bd (patch) | |
tree | 576eaf488793a030555196a2f44ba22b94a5daa8 /synapse/replication/http/_base.py | |
parent | Bump cryptography from 41.0.4 to 41.0.5 (#16572) (diff) | |
download | synapse-8c63e932865c0d620c6d5b4be98b9ea3e9f240bd.tar.xz |
Fix HTTP repl response to use minimum token (#16578)
Diffstat (limited to 'synapse/replication/http/_base.py')
-rw-r--r-- | synapse/replication/http/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py index 7476839db5..38701aea72 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py @@ -433,7 +433,7 @@ class ReplicationEndpoint(metaclass=abc.ABCMeta): if self.WAIT_FOR_STREAMS: response[_STREAM_POSITION_KEY] = { - stream.NAME: stream.current_token(self._instance_name) + stream.NAME: stream.minimal_local_current_token() for stream in self._streams } |