Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public S3AccessIO(T dvObject, DataAccessRequest req, String driverId) {
}
//Not sure this is needed but moving it from the open method for now since it definitely doesn't need to run every time an object is opened.
try {
if (bucketName == null || !s3.doesBucketExistV2(bucketName)) {
if (bucketName == null) {
throw new IOException("ERROR: S3AccessIO - You must create and configure a bucket before creating datasets.");
}
} catch (SdkClientException sce) {
Expand Down