mirror of https://github.com/apache/jclouds.git
parent
ae1f6d0c3f
commit
5baa49d9b8
|
@ -440,6 +440,11 @@ public final class GoogleCloudStorageBlobStore extends BaseBlobStore {
|
|||
return parts.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<MultipartUpload> listMultipartUploads(String container) {
|
||||
throw new UnsupportedOperationException("not supported");
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getMinimumMultipartPartSize() {
|
||||
return 5L * 1024L * 1024L;
|
||||
|
|
|
@ -312,4 +312,13 @@ public class GoogleCloudStorageBlobIntegrationLiveTest extends BaseBlobIntegrati
|
|||
public void testCopyIfUnmodifiedSinceNegative() throws Exception {
|
||||
super.testCopyIfUnmodifiedSince();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void testListMultipartUploads() throws Exception {
|
||||
try {
|
||||
super.testListMultipartUploads();
|
||||
} catch (UnsupportedOperationException uoe) {
|
||||
throw new SkipException("GCS does not support listing multipart uploads", uoe);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue