Skip to content

Commit 0fe7e38

Browse files
committed
increase timeout
1 parent 4981f6c commit 0fe7e38

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/src/test/java/org/asynchttpclient/LargeResponseTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ private static AsyncHttpClient createClient() {
5252
AsyncHttpClientConfig config = new DefaultAsyncHttpClientConfig.Builder()
5353
.setEnableAutomaticDecompression(true)
5454
.setCompressionEnforced(true)
55-
.setReadTimeout(Duration.ofMinutes(8))
56-
.setRequestTimeout(Duration.ofMinutes(8))
55+
.setReadTimeout(Duration.ofMinutes(15))
56+
.setRequestTimeout(Duration.ofMinutes(15))
5757
.setConnectTimeout(Duration.ofSeconds(1))
5858
.build();
5959
return new DefaultAsyncHttpClient(config);
@@ -90,7 +90,7 @@ static void stopServer() {
9090
}
9191

9292
@Test
93-
@Timeout(value = 8, unit = TimeUnit.MINUTES)
93+
@Timeout(value = 15, unit = TimeUnit.MINUTES)
9494
void handleLargeResponse() throws Throwable {
9595
AtomicInteger status = new AtomicInteger(-1);
9696
AtomicLong bytesReceived = new AtomicLong();
@@ -135,7 +135,7 @@ public void onThrowable(Throwable t) {
135135
}
136136
});
137137

138-
future.get(8, TimeUnit.MINUTES);
138+
future.get(15, TimeUnit.MINUTES);
139139

140140
assertEquals(200, status.get());
141141
assertEquals(0, throwableCount.get());

0 commit comments

Comments
 (0)