Browse Source

return ' shouldRetry=true' so that filer can retry the failed chunk

pull/2486/head
Tanmoy Majumdar 3 years ago
parent
commit
ea09fb477a
  1. 2
      weed/util/http_util.go

2
weed/util/http_util.go

@ -326,7 +326,7 @@ func ReadUrlAsStream(fileUrl string, cipherKey []byte, isContentGzipped bool, is
return false, nil
}
if err != nil {
return false, err
return true, err
}
}

Loading…
Cancel
Save