mirror of
https://github.com/minio/minio.git
synced 2025-01-11 23:13:23 -05:00
fix: missing CopyObjectPart maxClients reorder
This commit is contained in:
parent
ae731d232f
commit
aa85af4d1a
@ -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 New Issue
Block a user