keep 204 response

This commit is contained in:
Rinat Shigapov 2020-06-11 19:00:34 +03:00
parent fafc41a27f
commit 283b749ff1

View file

@ -112,11 +112,7 @@ func (s3a *S3ApiServer) DeleteObjectHandler(w http.ResponseWriter, r *http.Reque
for k, v := range proxyResponse.Header {
w.Header()[k] = v
}
if proxyResponse.StatusCode == http.StatusNotFound {
writeErrorResponse(w, ErrNoSuchKey, r.URL)
return
}
w.WriteHeader(proxyResponse.StatusCode)
w.WriteHeader(http.StatusNoContent)
})
}