Skip to content
Merged
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 @@ -157,8 +157,9 @@ void testTimeoutConfiguration() throws InterruptedException, ExecutionException,
timeoutException = e;
}
assertThat(timeoutException).isInstanceOf(TimeoutException.class);
// Should not time out
metaDataFuture.get(500, TimeUnit.MILLISECONDS);
// Metadata discovery uses independent per-operation timeouts and may
// perform sequential fallbacks, especially for hostname discovery on Windows.
metaDataFuture.get(2000, TimeUnit.MILLISECONDS);
}

@Test
Expand Down
Loading