mirror of
https://github.com/borgbackup/borg.git
synced 2026-04-02 07:36:51 -04:00
when doing in-file checkpointing, borg creates *.borg_part_N files. complete_file = part_1 + part_2 + ... + part_N the source item for recreate already has a precomputed (total) size member, thus we must force recomputation from the (partial) chunks list to correct the size to be the part's size only. borg create avoided this problem by computing the size member after writing all the parts. this is now not required any more. the bug is mostly cosmetic, borg check will complain, borg extract on a part file would also complain. but all the complaints only refer to the wrong metadata of the part files, the part files' contents are correct. usually you will never extract or look at part files, but only deal with the full file, which will be completely valid, all metadata and content. you can get rid of the archives with these cosmetic errors by running borg recreate on them with a fixed borg version. the old part files will get dropped (because they are usually ignored) and any new part file created due to checkpointing will be correct. |
||
|---|---|---|
| .. | ||
| algorithms | ||
| cache_sync | ||
| crypto | ||
| helpers | ||
| platform | ||
| testsuite | ||
| __init__.py | ||
| __main__.py | ||
| _chunker.c | ||
| _endian.h | ||
| _hashindex.c | ||
| _item.c | ||
| archive.py | ||
| archiver.py | ||
| cache.py | ||
| chunker.pyx | ||
| compress.pyx | ||
| constants.py | ||
| fuse.py | ||
| hashindex.pyx | ||
| item.pyx | ||
| locking.py | ||
| logger.py | ||
| lrucache.py | ||
| nanorst.py | ||
| paperkey.html | ||
| patterns.py | ||
| remote.py | ||
| repository.py | ||
| selftest.py | ||
| shellpattern.py | ||
| upgrader.py | ||
| version.py | ||
| xattr.py | ||