kopia lustrzana https://github.com/gaul/s3proxy
rodzic
629fa0b2d4
commit
aed1a3ab3c
|
@ -1488,6 +1488,12 @@ final class S3ProxyHandler extends AbstractHandler {
|
|||
HttpServletResponse response, BlobStore blobStore,
|
||||
String containerName, String blobName, String uploadId)
|
||||
throws IOException, S3Exception {
|
||||
// TODO: implement multipart copy
|
||||
if (request.getHeader("x-amz-copy-source") != null ||
|
||||
request.getHeader("x-amz-copy-source-range") != null) {
|
||||
throw new S3Exception(S3ErrorCode.NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
// TODO: duplicated from handlePutBlob
|
||||
String contentLengthString = null;
|
||||
String contentMD5String = null;
|
||||
|
|
Ładowanie…
Reference in New Issue