Browse Source

refactoring

pull/1213/head
Chris Lu 5 years ago
parent
commit
35dde56711
  1. 2
      weed/s3api/s3api_object_copy_handlers.go

2
weed/s3api/s3api_object_copy_handlers.go

@ -113,7 +113,7 @@ func (s3a *S3ApiServer) CopyObjectPartHandler(w http.ResponseWriter, r *http.Req
}
// check partID with maximum part ID for multipart objects
if partID > 10000 {
if partID > globalMaxPartID {
writeErrorResponse(w, ErrInvalidMaxParts, r.URL)
return
}

Loading…
Cancel
Save