diff --git a/resteasy-dependencies-bom/pom.xml b/resteasy-dependencies-bom/pom.xml index 56e1647e1ff..579524aa86a 100644 --- a/resteasy-dependencies-bom/pom.xml +++ b/resteasy-dependencies-bom/pom.xml @@ -39,7 +39,7 @@ 4.12 2.9.1 1.0 - 4.5.2 + 4.5.4 4.4.5 4.1.3 0.6 diff --git a/testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/AsyncTimeoutExceptionsTest.java b/testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/AsyncTimeoutExceptionsTest.java index 78962d40d90..fa9824a46f8 100644 --- a/testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/AsyncTimeoutExceptionsTest.java +++ b/testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/AsyncTimeoutExceptionsTest.java @@ -105,7 +105,7 @@ private Client prepareHttpClientForMultipleRequests() { RequestConfig reqConfig = RequestConfig.custom() // apache HttpClient specific .setConnectTimeout(2000) - .setSocketTimeout(2000) + .setSocketTimeout(-1) .setConnectionRequestTimeout(200) .build(); CloseableHttpClient httpClient = HttpClientBuilder.create()