From 5353e384696764af171e9479bd2cf488c0422be3 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 3 Feb 2021 00:35:44 -0800 Subject: [PATCH] S3: should return 204 on DELETE to nonexistent file fix https://github.com/chrislusf/seaweedfs/issues/1776 --- weed/s3api/s3api_object_handlers.go | 6 ++++-- 1 file 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)