mirror of
https://github.com/minio/minio.git
synced 2026-06-03 13:46:14 -04:00
fix: missing CopyObjectPart maxClients reorder
This commit is contained in:
parent
ae731d232f
commit
aa85af4d1a
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ func registerAPIRouter(router *mux.Router) {
|
|||
// CopyObjectPart
|
||||
bucket.Methods(http.MethodPut).Path("/{object:.+}").
|
||||
HeadersRegexp(xhttp.AmzCopySource, ".*?(\\/|%2F).*?").
|
||||
HandlerFunc(maxClients(collectAPIStats("copyobjectpart", httpTraceAll(api.CopyObjectPartHandler)))).
|
||||
HandlerFunc(collectAPIStats("copyobjectpart", maxClients(httpTraceAll(api.CopyObjectPartHandler)))).
|
||||
Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
|
||||
// PutObjectPart
|
||||
bucket.Methods(http.MethodPut).Path("/{object:.+}").HandlerFunc(
|
||||
|
|
|
|||
Loading…
Reference in a new issue