Skip to content

Commit

Permalink
[FLINK-16911] Increase timeout in S3 ITCases
Browse files Browse the repository at this point in the history
The deadline is shared for all tests and it was probably to low.
  • Loading branch information
aljoscha committed May 22, 2020
1 parent 0d5b238 commit 006ab7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static void setup() throws IOException {

basePath = new Path(S3TestCredentials.getTestBucketUri() + "tests-" + UUID.randomUUID());
fs = basePath.getFileSystem();
deadline = System.nanoTime() + 30_000_000_000L;
deadline = System.nanoTime() + 90_000_000_000L;

// check for uniqueness of the test directory
// directory must not yet exist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static void setup() throws IOException {

basePath = new Path(S3TestCredentials.getTestBucketUri() + TEST_DATA_DIR);
fs = basePath.getFileSystem();
deadline = System.nanoTime() + 30_000_000_000L;
deadline = System.nanoTime() + 90_000_000_000L;

// check for uniqueness of the test directory
// directory must not yet exist
Expand Down

0 comments on commit 006ab7a

Please sign in to comment.