s3 test get w/ If-Match: bogus ETag

This commit is contained in:
Konstantin Lebedev
2021-05-24 16:59:44 +05:00
parent 9079ce0e7f
commit b612d5aebd
4 changed files with 20 additions and 4 deletions

View File

@@ -333,6 +333,11 @@ func (s3a *S3ApiServer) proxyToFiler(w http.ResponseWriter, r *http.Request, des
}
defer util.CloseResponse(resp)
if resp.StatusCode == http.StatusPreconditionFailed {
writeErrorResponse(w, s3err.ErrPreconditionFailed, r.URL)
return
}
if (resp.ContentLength == -1 || resp.StatusCode == 404) && resp.StatusCode != 304 {
if r.Method != "DELETE" {
writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL)