Skip to content

Commit d2f2d6f

Browse files
committed
Re-integrate Grizzly connection pool changes.
1 parent 2a6bb31 commit d2f2d6f

File tree

12 files changed

+367
-761
lines changed

12 files changed

+367
-761
lines changed

api/src/test/java/org/asynchttpclient/async/NoNullResponseTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
import java.security.cert.X509Certificate;
3232

3333
public abstract class NoNullResponseTest extends AbstractBasicTest {
34-
private static final String VERISIGN_HTTPS_URL = "https://www.verisign.com";
34+
private static final String GOOGLE_HTTPS_URL = "https://www.google.com";
3535

3636
@Test(invocationCount = 4, groups = { "online", "default_provider" })
3737
public void multipleSslRequestsWithDelayAndKeepAlive() throws Throwable {
3838
final AsyncHttpClient client = create();
3939
try {
40-
final BoundRequestBuilder builder = client.prepareGet(VERISIGN_HTTPS_URL);
40+
final BoundRequestBuilder builder = client.prepareGet(GOOGLE_HTTPS_URL);
4141
final Response response1 = builder.execute().get();
4242
Thread.sleep(5000);
4343
final Response response2 = builder.execute().get();

providers/grizzly/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@
2929
<artifactId>grizzly-spdy</artifactId>
3030
<version>${grizzly.version}</version>
3131
</dependency>
32+
<dependency>
33+
<groupId>org.glassfish.grizzly</groupId>
34+
<artifactId>connection-pool</artifactId>
35+
<version>${grizzly.version}</version>
36+
</dependency>
3237
<dependency>
3338
<groupId>org.glassfish.grizzly</groupId>
3439
<artifactId>grizzly-npn-api</artifactId>

0 commit comments

Comments
 (0)