Skip to content
Draft
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 @@ -501,8 +501,9 @@ void connectTimeout() {
});

// Assert that the export request fails well before the default connect timeout of 10s
// Note: Connection failures to non-routable IPs can take 1-5 seconds depending on OS/network
assertThat(System.currentTimeMillis() - startTimeMillis)
.isLessThan(TimeUnit.SECONDS.toMillis(1));
.isLessThan(TimeUnit.SECONDS.toMillis(6));
}
}

Expand Down
Loading