mirror of
https://github.com/minio/minio.git
synced 2025-01-11 23:13:23 -05:00
fix: complete multipart upload respond with ETag quoted (#9525)
Fixes #9517
This commit is contained in:
parent
3773874cd3
commit
8eb99d3a87
@ -601,7 +601,8 @@ func generateCompleteMultpartUploadResponse(bucket, key, location, etag string)
|
|||||||
Location: location,
|
Location: location,
|
||||||
Bucket: bucket,
|
Bucket: bucket,
|
||||||
Key: key,
|
Key: key,
|
||||||
ETag: etag,
|
// AWS S3 quotes the ETag in XML, make sure we are compatible here.
|
||||||
|
ETag: "\"" + etag + "\"",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user