diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2020-11-04 10:18:17 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-04 10:18:17 -0800 |
| commit | 5fb8530358c7066bdfc03aab49e689ee45c1d667 (patch) | |
| tree | 758eff9895903d0cf57c5494b6cebcea7a608460 | |
| parent | baced7b94f5d8e5133eb406f549c20a4f7a3136a (diff) | |
| parent | 6cd6ff69627a85bafc420ad1b83e08a4f8ba6d53 (diff) | |
| download | seaweedfs-5fb8530358c7066bdfc03aab49e689ee45c1d667.tar.xz seaweedfs-5fb8530358c7066bdfc03aab49e689ee45c1d667.zip | |
Merge pull request #1598 from kmlebedev/hotfix/ErrNoSuchKey
avoid blank response for 404
| -rw-r--r-- | weed/s3api/s3api_object_handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/s3api/s3api_object_handlers.go b/weed/s3api/s3api_object_handlers.go index fa628f44e..fe134c102 100644 --- a/weed/s3api/s3api_object_handlers.go +++ b/weed/s3api/s3api_object_handlers.go @@ -266,7 +266,7 @@ func (s3a *S3ApiServer) proxyToFiler(w http.ResponseWriter, r *http.Request, des resp, postErr := client.Do(proxyReq) - if resp.ContentLength == -1 && !strings.HasSuffix(destUrl, "/") { + if (resp.ContentLength == -1 || resp.StatusCode == 404) && !strings.HasSuffix(destUrl, "/") { writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL) return } |
