putio: fix multithread download and other ranged requests

Before this change the 206 responses from putio Range requests were being
returned as errors.

This change checks for 200 and 206 in the GET response now.
This commit is contained in:
rafma0 2022-04-03 17:14:46 -03:00 committed by Nick Craig-Wood
parent 9e9ead2ac4
commit be9ee1d138
2 changed files with 7 additions and 5 deletions

View File

@ -12,11 +12,13 @@ import (
"github.com/rclone/rclone/lib/pacer"
)
func checkStatusCode(resp *http.Response, expected int) error {
if resp.StatusCode != expected {
return &statusCodeError{response: resp}
func checkStatusCode(resp *http.Response, expected ...int) error {
for _, code := range expected {
if resp.StatusCode == code {
return nil
}
}
return nil
return &statusCodeError{response: resp}
}
type statusCodeError struct {

View File

@ -244,7 +244,7 @@ func (o *Object) Open(ctx context.Context, options ...fs.OpenOption) (in io.Read
if err != nil {
return shouldRetry(ctx, err)
}
if err := checkStatusCode(resp, 200); err != nil {
if err := checkStatusCode(resp, 200, 206); err != nil {
return shouldRetry(ctx, err)
}
return false, nil