Skip to content

Commit

Permalink
Update S3IntegrationTestBase.java (#4079)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoewangg authored Jun 9, 2023
1 parent 1605c52 commit ee20696
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ private static void createBucket(String bucketName, int retryCount) {
if (e.awsErrorDetails().errorCode().equals("BucketAlreadyOwnedByYou")) {
System.err.printf("%s bucket already exists, likely leaked by a previous run\n", bucketName);
} else if (e.awsErrorDetails().errorCode().equals("TooManyBuckets")) {
System.err.println("Printing all buckets for debug:");
System.err.println("Error: TooManyBuckets. Printing all buckets for debug:");
s3.listBuckets().buckets().forEach(System.err::println);
if (retryCount < 2) {
System.err.println("Retrying...");
Expand Down

0 comments on commit ee20696

Please sign in to comment.