mirror of
https://github.com/minio/minio.git
synced 2025-02-28 05:49:16 -05:00
Fix multipart upload etag on azure gateway (#5055)
This commit is contained in:
parent
7e05b826fa
commit
1256b0b818
@ -636,7 +636,7 @@ func (a *azureObjects) PutObjectPart(bucket, object, uploadID string, partID int
|
|||||||
etag := data.md5Sum
|
etag := data.md5Sum
|
||||||
if etag == "" {
|
if etag == "" {
|
||||||
// Generate random ETag.
|
// Generate random ETag.
|
||||||
etag = getMD5Hash([]byte(mustGetUUID()))
|
etag = azureToS3ETag(getMD5Hash([]byte(mustGetUUID())))
|
||||||
}
|
}
|
||||||
|
|
||||||
subPartSize, subPartNumber := int64(azureBlockSize), 1
|
subPartSize, subPartNumber := int64(azureBlockSize), 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user