aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2021-12-02 21:58:33 -0800
committerGitHub <noreply@github.com>2021-12-02 21:58:33 -0800
commit75e40134392f20a491e653118476f2ae237721f8 (patch)
tree9498b19d2d6f5b3c0ae8a3eaca6fba467131209c
parent689f5513a955528f365e79c30d9965e7826b1509 (diff)
parentea09fb477a20292f5bd6bd755e2c496df063eae3 (diff)
downloadseaweedfs-75e40134392f20a491e653118476f2ae237721f8.tar.xz
seaweedfs-75e40134392f20a491e653118476f2ae237721f8.zip
Merge pull request #2486 from t4nmoy/fix-filer-retry
-rw-r--r--weed/util/http_util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/util/http_util.go b/weed/util/http_util.go
index f005e8d42..7bd6758eb 100644
--- a/weed/util/http_util.go
+++ b/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
}
}