webdav backend: retry propfind on 425 status
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
parent
69897b97fb
commit
3941e9d329
1 changed files with 1 additions and 0 deletions
|
@ -244,6 +244,7 @@ func (f *Fs) Features() *fs.Features {
|
|||
// retryErrorCodes is a slice of error codes that we will retry
|
||||
var retryErrorCodes = []int{
|
||||
423, // Locked
|
||||
425, // Too Early
|
||||
429, // Too Many Requests.
|
||||
500, // Internal Server Error
|
||||
502, // Bad Gateway
|
||||
|
|
Loading…
Reference in a new issue