Ignore part checksums in CompleteMultipartUpload

The intent of these are to correlate with the headers from previous
UploadPart requests.  S3Proxy ignores these elements for now since
none of the storage backends support them.  References #656.
pull/716/head
Andrew Gaul 2024-11-04 19:17:16 -08:00
rodzic 00989c68da
commit 5332a9dce7
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -32,6 +32,16 @@ final class CompleteMultipartUploadRequest {
int partNumber;
@JacksonXmlProperty(localName = "ETag")
String eTag;
// TODO: unsupported checksums
@JacksonXmlProperty(localName = "ChecksumCRC32")
String checksumCRC32;
@JacksonXmlProperty(localName = "ChecksumCRC32C")
String checksumCRC32C;
@JacksonXmlProperty(localName = "ChecksumSHA1")
String checksumSHA1;
@JacksonXmlProperty(localName = "ChecksumSHA256")
String checksumSHA256;
}
}
// CHECKSTYLE:ON