|
|
|
@ -1209,7 +1209,7 @@ func (api objectAPIHandlers) PutObjectHandler(w http.ResponseWriter, r *http.Req |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// To detect if the client has disconnected.
|
|
|
|
|
r.Body = &detectDisconnect{r.Body, r.Context().Done()} |
|
|
|
|
r.Body = &contextReader{r.Body, r.Context()} |
|
|
|
|
|
|
|
|
|
// X-Amz-Copy-Source shouldn't be set for this call.
|
|
|
|
|
if _, ok := r.Header[xhttp.AmzCopySource]; ok { |
|
|
|
@ -1958,7 +1958,7 @@ func (api objectAPIHandlers) PutObjectPartHandler(w http.ResponseWriter, r *http |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// To detect if the client has disconnected.
|
|
|
|
|
r.Body = &detectDisconnect{r.Body, r.Context().Done()} |
|
|
|
|
r.Body = &contextReader{r.Body, r.Context()} |
|
|
|
|
|
|
|
|
|
// X-Amz-Copy-Source shouldn't be set for this call.
|
|
|
|
|
if _, ok := r.Header[xhttp.AmzCopySource]; ok { |
|
|
|
|