repair pack: add support for truncated files

This commit is contained in:
Michael Eischer 2024-01-20 21:54:27 +01:00
parent 7c351bc53c
commit 764b0bacd6
1 changed files with 2 additions and 1 deletions

View File

@ -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)