mirror of
https://github.com/minio/minio.git
synced 2025-11-23 02:57:42 -05:00
Fix s3MetaToAzureProperties Content-Md5 key (#5068)
This commit is contained in:
committed by
deekoder
parent
866dffcd62
commit
db3fed2279
@@ -101,7 +101,7 @@ func s3MetaToAzureProperties(s3Metadata map[string]string) (storage.BlobMetadata
|
||||
case k == "Content-Length":
|
||||
// assume this doesn't fail
|
||||
props.ContentLength, _ = strconv.ParseInt(v, 10, 64)
|
||||
case k == "Content-MD5":
|
||||
case k == "Content-Md5":
|
||||
props.ContentMD5 = v
|
||||
case k == "Content-Type":
|
||||
props.ContentType = v
|
||||
|
||||
Reference in New Issue
Block a user