forked from TrueCloudLab/restic
Merge pull request #4993 from MichaelEischer/fix-timeout-error
backend: return correct error on upload/request timeout
This commit is contained in:
commit
74d3f92cc7
2 changed files with 5 additions and 2 deletions
|
@ -65,6 +65,9 @@ func (w *watchdogRoundtripper) RoundTrip(req *http.Request) (*http.Response, err
|
||||||
|
|
||||||
resp, err := w.rt.RoundTrip(req)
|
resp, err := w.rt.RoundTrip(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if isTimeout(err) {
|
||||||
|
err = errRequestTimeout
|
||||||
|
}
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -135,7 +135,7 @@ func TestUploadTimeout(t *testing.T) {
|
||||||
rtest.OK(t, err)
|
rtest.OK(t, err)
|
||||||
|
|
||||||
resp, err := rt.RoundTrip(req)
|
resp, err := rt.RoundTrip(req)
|
||||||
rtest.Equals(t, context.Canceled, err)
|
rtest.Equals(t, errRequestTimeout, err)
|
||||||
// make linter happy
|
// make linter happy
|
||||||
if resp != nil {
|
if resp != nil {
|
||||||
rtest.OK(t, resp.Body.Close())
|
rtest.OK(t, resp.Body.Close())
|
||||||
|
@ -162,7 +162,7 @@ func TestProcessingTimeout(t *testing.T) {
|
||||||
rtest.OK(t, err)
|
rtest.OK(t, err)
|
||||||
|
|
||||||
resp, err := rt.RoundTrip(req)
|
resp, err := rt.RoundTrip(req)
|
||||||
rtest.Equals(t, context.Canceled, err)
|
rtest.Equals(t, errRequestTimeout, err)
|
||||||
// make linter happy
|
// make linter happy
|
||||||
if resp != nil {
|
if resp != nil {
|
||||||
rtest.OK(t, resp.Body.Close())
|
rtest.OK(t, resp.Body.Close())
|
||||||
|
|
Loading…
Reference in a new issue