fuse: hot-spot micro-opt for versions view

this way it does not create/discard tons of lists
This commit is contained in:
Thomas Waldmann 2020-04-12 00:22:07 +02:00
parent cccee36a60
commit 392bc3e3b1
1 changed files with 1 additions and 2 deletions

View File

@ -362,8 +362,7 @@ class FuseBackend(object):
file_id = blake2b_128(path)
current_version, previous_id = self.versions_index.get(file_id, (0, None))
chunk_ids = [chunk_id for chunk_id, _, _ in item.chunks]
contents_id = blake2b_128(b''.join(chunk_ids))
contents_id = blake2b_128(b''.join(chunk_id for chunk_id, _, _ in item.chunks))
if contents_id != previous_id:
current_version += 1