From 205258b1f9982a34d8d074e647ebc3dee12ec667 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Wed, 15 Jan 2014 14:01:24 +0000 Subject: [PATCH] We have a concurrency bug in HttpCore 4.3.1 which will be addressed after HttpClient 4.3.2 is released. git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1558386 13f79535-47bb-0310-9956-ffa450edef68 --- .../impl/client/integration/TestIdleConnectionEviction.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestIdleConnectionEviction.java b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestIdleConnectionEviction.java index 4b4753395..8ba76be64 100644 --- a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestIdleConnectionEviction.java +++ b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestIdleConnectionEviction.java @@ -43,6 +43,7 @@ import org.apache.http.localserver.LocalServerTestBase; import org.apache.http.localserver.LocalTestServer; import org.apache.http.util.EntityUtils; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; public class TestIdleConnectionEviction extends LocalServerTestBase { @@ -55,6 +56,7 @@ public class TestIdleConnectionEviction extends LocalServerTestBase { } @Test + @Ignore("We have a concurrency bug in HttpCore which will be addressed after HttpClient 4.3.2 is released") public void testIdleConnectionEviction() throws Exception { final PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager(); cm.setDefaultMaxPerRoute(10);