mirror of
https://github.com/minio/minio.git
synced 2024-12-25 06:35:56 -05:00
fix: handle Transfer-Encoding for make bucket
In case of make bucket, there is a chance of Transfer-Encoding is sent where Content-Length is missing. This patch fixes the problem by checking whether Transfer-Encoding: chunked is set along with Content-Length.
This commit is contained in:
parent
3a55d05eff
commit
d79fcb1800
@ -230,7 +230,7 @@ func (api CloudStorageAPI) PutBucketHandler(w http.ResponseWriter, req *http.Req
|
|||||||
// if body of request is non-nil then check for validity of Content-Length
|
// if body of request is non-nil then check for validity of Content-Length
|
||||||
if req.Body != nil {
|
if req.Body != nil {
|
||||||
/// if Content-Length is unknown/missing, deny the request
|
/// if Content-Length is unknown/missing, deny the request
|
||||||
if req.ContentLength == -1 {
|
if req.ContentLength == -1 && !contains(req.TransferEncoding, "chunked") {
|
||||||
writeErrorResponse(w, req, MissingContentLength, req.URL.Path)
|
writeErrorResponse(w, req, MissingContentLength, req.URL.Path)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user