mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 14:56:29 +00:00
archiver: Return correct error
This commit is contained in:
parent
157c854d04
commit
1f2463f42e
@ -189,9 +189,8 @@ func (s *FileSaver) saveFile(ctx context.Context, chnker *chunker.Chunker, snPat
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, res := range results {
|
for _, res := range results {
|
||||||
// test if the context has been cancelled, return the error
|
|
||||||
if res.Err() != nil {
|
if res.Err() != nil {
|
||||||
return saveFileResponse{err: ctx.Err()}
|
return saveFileResponse{err: res.Err()}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !res.Known() {
|
if !res.Known() {
|
||||||
|
Loading…
Reference in New Issue
Block a user