kopia lustrzana https://github.com/gaul/s3proxy
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
rodzic
00989c68da
commit
5332a9dce7
|
@ -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
|
||||
|
|
Ładowanie…
Reference in New Issue