1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-02 07:06:44 +02:00

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

This commit is contained in:
Tanmoy Majumdar 2021-12-03 11:54:20 +06:00
parent 689f5513a9
commit ea09fb477a

View file

@ -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
}
}