diff --git a/backend/s3/s3.go b/backend/s3/s3.go index 9032587f3..ded801621 100644 --- a/backend/s3/s3.go +++ b/backend/s3/s3.go @@ -1346,6 +1346,7 @@ func (f *Fs) Features() *fs.Features { // retryErrorCodes is a slice of error codes that we will retry // See: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html var retryErrorCodes = []int{ + 429, // Too Many Requests 500, // Internal Server Error - "We encountered an internal error. Please try again." 503, // Service Unavailable/Slow Down - "Reduce your request rate" }