2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-08 12:00:49 +00:00

remove check for context.Canceled

gh-1434
This commit is contained in:
George Armhold 2017-12-06 05:38:29 -05:00
parent 20d78ab0d9
commit 0dc31c03e1

View File

@ -43,10 +43,6 @@ func (be *RetryBackend) retry(ctx context.Context, msg string, f func() error) e
},
)
if errors.Cause(err) == context.Canceled {
return nil
}
return err
}