mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-06 22:59:22 +01:00
Don't update caches replication stream if tokens haven't advanced
This commit is contained in:
parent
16284039c6
commit
64a2acb161
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ class ReplicationResource(Resource):
|
|||
|
||||
caches = request_streams.get("caches")
|
||||
|
||||
if caches is not None:
|
||||
if caches is not None and current_position != caches:
|
||||
updated_caches = yield self.store.get_all_updated_caches(
|
||||
caches, current_position, limit
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue