diff options
| author | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-11-04 22:54:47 +0500 |
|---|---|---|
| committer | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-11-04 22:54:47 +0500 |
| commit | 6cd6ff69627a85bafc420ad1b83e08a4f8ba6d53 (patch) | |
| tree | 43809de1a634743990f7e43af709b8ce74f6a785 | |
| parent | eb0b8cd9d83f1e814f2ebe6a6f85e1c9c91a62ea (diff) | |
| download | seaweedfs-6cd6ff69627a85bafc420ad1b83e08a4f8ba6d53.tar.xz seaweedfs-6cd6ff69627a85bafc420ad1b83e08a4f8ba6d53.zip | |
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 } |
