@@ -52,8 +52,8 @@ private static AsyncHttpClient createClient() {
5252AsyncHttpClientConfig 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 ();
5959return 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 )
9494void handleLargeResponse ()throws Throwable {
9595AtomicInteger status =new AtomicInteger (-1 );
9696AtomicLong 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
140140assertEquals (200 ,status .get ());
141141assertEquals (0 ,throwableCount .get ());