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
)