0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-15 06:08:59 +02:00

Don't update caches replication stream if tokens haven't advanced

This commit is contained in:
Erik Johnston 2016-08-16 16:44:19 +01:00
parent 16284039c6
commit 64a2acb161

View file

@ -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
)