S3 MultipartUpload pass contentType to meta

This commit is contained in:
Konstantin Lebedev
2021-10-12 17:14:54 +05:00
parent de1ec050e8
commit 458145425e
2 changed files with 10 additions and 0 deletions

View File

@@ -36,6 +36,10 @@ func (s3a *S3ApiServer) NewMultipartUploadHandler(w http.ResponseWriter, r *http
createMultipartUploadInput.Metadata[k] = aws.String(string(v))
}
contentType := r.Header.Get("Content-Type")
if contentType != "" {
createMultipartUploadInput.ContentType = &contentType
}
response, errCode := s3a.createMultipartUpload(createMultipartUploadInput)
glog.V(2).Info("NewMultipartUploadHandler", string(s3err.EncodeXMLResponse(response)), errCode)