aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-02-03 00:35:44 -0800
committerChris Lu <chris.lu@gmail.com>2021-02-03 00:35:44 -0800
commit5353e384696764af171e9479bd2cf488c0422be3 (patch)
treebb342f3109fa9f15e25f244d58859b9676712a5b
parent2396ac234c060774ef0640f513fee2e424fbb706 (diff)
downloadseaweedfs-5353e384696764af171e9479bd2cf488c0422be3.tar.xz
seaweedfs-5353e384696764af171e9479bd2cf488c0422be3.zip
S3: should return 204 on DELETE to nonexistent file
fix https://github.com/chrislusf/seaweedfs/issues/1776
-rw-r--r--weed/s3api/s3api_object_handlers.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/weed/s3api/s3api_object_handlers.go b/weed/s3api/s3api_object_handlers.go
index ffe46aa85..c9e124328 100644
--- a/weed/s3api/s3api_object_handlers.go
+++ b/weed/s3api/s3api_object_handlers.go
@@ -296,8 +296,10 @@ func (s3a *S3ApiServer) proxyToFiler(w http.ResponseWriter, r *http.Request, des
defer util.CloseResponse(resp)
if (resp.ContentLength == -1 || resp.StatusCode == 404) && !strings.HasSuffix(destUrl, "/") {
- writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL)
- return
+ if r.Method != "DELETE" {
+ writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL)
+ return
+ }
}
responseFn(resp, w)