Skip to content

Commit b034c50

Browse files
committed
Don't swallow exception
1 parent 87b08e6 commit b034c50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/repository-azure/src/main/java/org/elasticsearch/repositories/azure/AzureBlobStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ private void deleteListOfBlobs(AzureBlobServiceClient azureBlobServiceClient, It
319319
}
320320
}
321321
} catch (Exception e) {
322-
throw new IOException("Unable to delete blobs");
322+
throw new IOException("Unable to delete blobs", e);
323323
}
324324
}
325325

0 commit comments

Comments
 (0)