aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Lebedev <lebedev_k@tochka.com>2021-03-17 23:40:42 +0500
committerKonstantin Lebedev <lebedev_k@tochka.com>2021-03-17 23:40:42 +0500
commitc5705e7a35b4097a2026ad9da2fd5ca88a16492d (patch)
treed09e0f5ba69550e01780fb2b45255c01db0edbf8
parent04604b89e1da28d45e9f88bd0fe6ae0fb091e324 (diff)
downloadseaweedfs-c5705e7a35b4097a2026ad9da2fd5ca88a16492d.tar.xz
seaweedfs-c5705e7a35b4097a2026ad9da2fd5ca88a16492d.zip
dir + slash key does not exist
https://github.com/chrislusf/seaweedfs/issues/1917
-rw-r--r--weed/s3api/s3api_object_handlers.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/weed/s3api/s3api_object_handlers.go b/weed/s3api/s3api_object_handlers.go
index 2b6b80f90..56f50ddce 100644
--- a/weed/s3api/s3api_object_handlers.go
+++ b/weed/s3api/s3api_object_handlers.go
@@ -310,8 +310,7 @@ func (s3a *S3ApiServer) proxyToFiler(w http.ResponseWriter, r *http.Request, des
return
}
defer util.CloseResponse(resp)
-
- if (resp.ContentLength == -1 || resp.StatusCode == 404) && !strings.HasSuffix(destUrl, "/") {
+ if resp.ContentLength == -1 || resp.StatusCode == 404 {
if r.Method != "DELETE" {
writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL)
return