forked from TrueCloudLab/rclone
opendrive: Do not retry 400 errors
This type of error is unlikely to be an error that can be resolved by a retry, and is triggered in #2296 by files with a timestamp before the unix epoch.
This commit is contained in:
parent
e92294b482
commit
640d7d3b4e
1 changed files with 0 additions and 1 deletions
|
@ -646,7 +646,6 @@ func (f *Fs) Put(ctx context.Context, in io.Reader, src fs.ObjectInfo, options .
|
||||||
|
|
||||||
// retryErrorCodes is a slice of error codes that we will retry
|
// retryErrorCodes is a slice of error codes that we will retry
|
||||||
var retryErrorCodes = []int{
|
var retryErrorCodes = []int{
|
||||||
400, // Bad request (seen in "Next token is expired")
|
|
||||||
401, // Unauthorized (seen in "Token has expired")
|
401, // Unauthorized (seen in "Token has expired")
|
||||||
408, // Request Timeout
|
408, // Request Timeout
|
||||||
423, // Locked - get this on folders sometimes
|
423, // Locked - get this on folders sometimes
|
||||||
|
|
Loading…
Reference in a new issue