repair pack: add support for truncated files
This commit is contained in:
parent
7c351bc53c
commit
764b0bacd6
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ func RepairPacks(ctx context.Context, repo restic.Repository, ids restic.IDSet,
|
||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
})
|
})
|
||||||
if err != nil {
|
// ignore truncated file parts
|
||||||
|
if err != nil && !errors.Is(err, io.ErrUnexpectedEOF) {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
bar.Add(1)
|
bar.Add(1)
|
||||||
|
|
Loading…
Reference in a new issue