mirror of
https://github.com/octoleo/restic.git
synced 2024-11-24 13:47:42 +00:00
repair pack: add support for truncated files
This commit is contained in:
parent
7c351bc53c
commit
764b0bacd6
@ -44,7 +44,8 @@ func RepairPacks(ctx context.Context, repo restic.Repository, ids restic.IDSet,
|
||||
}
|
||||
return err
|
||||
})
|
||||
if err != nil {
|
||||
// ignore truncated file parts
|
||||
if err != nil && !errors.Is(err, io.ErrUnexpectedEOF) {
|
||||
return err
|
||||
}
|
||||
bar.Add(1)
|
||||
|
Loading…
Reference in New Issue
Block a user