forked from TrueCloudLab/restic
backend/rest: check HTTP error response for List
Before this change restic would attempt to JSON decode the error message resulting in confusing `Decode: invalid character 'B' looking for beginning of value` messages. Afterwards it will return `List failed, server response: 400 Bad Request (400)`
This commit is contained in:
parent
de37b68baa
commit
04c4033695
1 changed files with 5 additions and 1 deletions
|
@ -335,7 +335,11 @@ func (b *restBackend) List(ctx context.Context, t restic.FileType, fn func(resti
|
|||
b.sem.ReleaseToken()
|
||||
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "Get")
|
||||
return errors.Wrap(err, "List")
|
||||
}
|
||||
|
||||
if resp.StatusCode != 200 {
|
||||
return errors.Errorf("List failed, server response: %v (%v)", resp.Status, resp.StatusCode)
|
||||
}
|
||||
|
||||
if resp.Header.Get("Content-Type") == contentTypeV2 {
|
||||
|
|
Loading…
Reference in a new issue