diff --git a/cmd/handler-utils.go b/cmd/handler-utils.go index 793fb88ff..a6b2c32ea 100644 --- a/cmd/handler-utils.go +++ b/cmd/handler-utils.go @@ -237,6 +237,10 @@ func extractReqParams(r *http.Request) map[string]string { "sourceIPAddress": handlers.GetSourceIP(r), // Add more fields here. } + if rangeField := r.Header.Get(xhttp.Range); rangeField != "" { + m["range"] = rangeField + } + if _, ok := r.Header[xhttp.MinIOSourceReplicationRequest]; ok { m[xhttp.MinIOSourceReplicationRequest] = "" }