mirror of
https://github.com/rclone/rclone.git
synced 2025-01-23 06:38:47 +01:00
fs: Add more errors to retry - fixes #1733
This commit is contained in:
parent
106bc1c9fc
commit
43ced30f11
@ -224,8 +224,10 @@ func Cause(cause error) (retriable bool, err error) {
|
||||
// This is incredibly ugly - if only errors.Cause worked for all
|
||||
// errors and all errors were exported from the stdlib.
|
||||
var retriableErrorStrings = []string{
|
||||
"use of closed network connection", // not exported :-(
|
||||
"unexpected EOF reading trailer",
|
||||
"use of closed network connection", // internal/poll/fd.go
|
||||
"unexpected EOF reading trailer", // net/http/transfer.go
|
||||
"transport connection broken", // net/http/transport.go
|
||||
"http: ContentLength=", // net/http/transfer.go
|
||||
}
|
||||
|
||||
// Errors which indicate networking errors which should be retried
|
||||
|
Loading…
Reference in New Issue
Block a user