kopia lustrzana https://github.com/gaul/s3proxy
rodzic
39ca93bbac
commit
e40f0405df
|
@ -190,7 +190,13 @@ public final class AzureBlobStore extends BaseBlobStore {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void deleteContainer(String container) {
|
public void deleteContainer(String container) {
|
||||||
blobServiceClient.deleteBlobContainer(container);
|
try {
|
||||||
|
blobServiceClient.deleteBlobContainer(container);
|
||||||
|
} catch (BlobStorageException bse) {
|
||||||
|
if (bse.getErrorCode() != BlobErrorCode.CONTAINER_NOT_FOUND) {
|
||||||
|
throw bse;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Ładowanie…
Reference in New Issue