mirror of https://github.com/borgbackup/borg.git
tolerate missing chunks with delete --force
if a chunk is missing in repo, it will also be missing in a ad-hoc built chunks index.
This commit is contained in:
parent
d466005682
commit
876c08f654
|
@ -1056,8 +1056,11 @@ Duration: {0.duration}
|
|||
try:
|
||||
self.cache.chunk_decref(id, size, stats, wait=False)
|
||||
except KeyError:
|
||||
cid = bin_to_hex(id)
|
||||
raise ChunksIndexError(cid)
|
||||
nonlocal error
|
||||
if forced == 0:
|
||||
cid = bin_to_hex(id)
|
||||
raise ChunksIndexError(cid)
|
||||
error = True
|
||||
else:
|
||||
fetch_async_response(wait=False)
|
||||
|
||||
|
|
Loading…
Reference in New Issue