1
0
mirror of https://github.com/minio/minio-cpp.git synced 2025-07-30 05:23:05 +03:00

fix: correct multipart XML CompleteMultipartUploadResult (#183)

existing implementation was not parsing complete multipart
response properly.

Bonus: add support for new checksum fields
This commit is contained in:
Harshavardhana
2025-01-05 15:30:23 +05:30
committed by GitHub
parent 5a5533e4d5
commit 818d2036ac
3 changed files with 23 additions and 7 deletions

View File

@ -153,6 +153,10 @@ struct CompleteMultipartUploadResponse : public Response {
std::string location;
std::string etag;
std::string version_id;
std::string checksumCRC32;
std::string checksumCRC32C;
std::string checksumSHA1;
std::string checksumSHA256;
CompleteMultipartUploadResponse() = default;