Skip to content

Commit bfc445a

Browse files
authored
Merge branch 'main' into zstd-compression
2 parents 8f5aef3 + 4363427 commit bfc445a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ public void asyncOptionsTest() throws Throwable {
441441
// Some responses contain the TRACE method, some do not - account for both
442442
final String[] expected = {"GET", "HEAD", "OPTIONS", "POST"};
443443
final String[] expectedWithTrace = {"GET", "HEAD", "OPTIONS", "POST", "TRACE"};
444-
Future<String> f = client.prepareOptions("https://www.shieldblaze.com/").execute(new AsyncHandlerAdapter() {
444+
Future<String> f = client.prepareOptions("https://www.google.com/").execute(new AsyncHandlerAdapter() {
445445

446446
@Override
447447
public State onHeadersReceived(HttpHeaders headers) {

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void testNativeTransportWithEpollOnly() throws Exception {
5050
AsyncHttpClientConfig config = config().setUseNativeTransport(true).setUseOnlyEpollNativeTransport(true).build();
5151

5252
try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient) asyncHttpClient(config)) {
53-
assertDoesNotThrow(() -> client.prepareGet("https://www.shieldblaze.com").execute().get());
53+
assertDoesNotThrow(() -> client.prepareGet("https://www.google.com").execute().get());
5454
assertInstanceOf(EpollEventLoopGroup.class, client.channelManager().getEventLoopGroup());
5555
}
5656
}
@@ -60,7 +60,7 @@ public void testNativeTransportWithEpollOnly() throws Exception {
6060
public void testNativeTransportWithoutEpollOnly() throws Exception {
6161
AsyncHttpClientConfig config = config().setUseNativeTransport(true).setUseOnlyEpollNativeTransport(false).build();
6262
try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient) asyncHttpClient(config)) {
63-
assertDoesNotThrow(() -> client.prepareGet("https://www.shieldblaze.com").execute().get());
63+
assertDoesNotThrow(() -> client.prepareGet("https://www.google.com").execute().get());
6464
assertInstanceOf(IOUringEventLoopGroup.class, client.channelManager().getEventLoopGroup());
6565
}
6666
}
@@ -70,7 +70,7 @@ public void testNativeTransportWithoutEpollOnly() throws Exception {
7070
public void testNativeTransportKQueueOnMacOs() throws Exception {
7171
AsyncHttpClientConfig config = config().setUseNativeTransport(true).build();
7272
try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient) asyncHttpClient(config)) {
73-
assertDoesNotThrow(() -> client.prepareGet("https://www.shieldblaze.com").execute().get());
73+
assertDoesNotThrow(() -> client.prepareGet("https://www.google.com").execute().get());
7474
assertInstanceOf(KQueueEventLoopGroup.class, client.channelManager().getEventLoopGroup());
7575
}
7676
}

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<maven.compiler.target>11</maven.compiler.target>
5959
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6060

61-
<netty.version>4.1.109.Final</netty.version>
61+
<netty.version>4.1.110.Final</netty.version>
6262
<netty.iouring>0.0.25.Final</netty.iouring>
6363
<brotli4j.version>1.16.0</brotli4j.version>
6464
<slf4j.version>2.0.13</slf4j.version>

0 commit comments

Comments
 (0)