1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 04:37:34 +00:00

Merge pull request #3283 from ThomasWaldmann/fix-checkpoint-stats-1.1

stats: do not count data volume twice when checkpointing, fixes #3224
This commit is contained in:
TW 2017-11-05 02:40:00 +01:00 committed by GitHub
commit baf9c65250
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -942,8 +942,9 @@ def chunk_processor(data):
# if we created part files, we have referenced all chunks from the part files,
# but we also will reference the same chunks also from the final, complete file:
dummy_stats = Statistics() # do not count this data volume twice
for chunk in item.chunks:
cache.chunk_incref(chunk.id, stats, size=chunk.size)
cache.chunk_incref(chunk.id, dummy_stats, size=chunk.size)
def process_stdin(self, path, cache):
uid, gid = 0, 0