File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1616package org .asynchttpclient ;
1717
1818import io .github .artsok .RepeatedIfExceptionsTest ;
19- import io .netty .channel .IoEventLoopGroup ;
19+ import io .netty .channel .MultiThreadIoEventLoopGroup ;
2020import io .netty .channel .epoll .EpollEventLoopGroup ;
2121import io .netty .channel .kqueue .KQueueEventLoopGroup ;
22- import io .netty .channel .uring .IoUringIoHandler ;
2322import io .netty .util .Timer ;
2423import org .asynchttpclient .cookie .CookieEvictionTask ;
2524import org .asynchttpclient .cookie .CookieStore ;
@@ -62,7 +61,7 @@ public void testNativeTransportWithoutEpollOnly() throws Exception {
6261 AsyncHttpClientConfig config = config ().setUseNativeTransport (true ).setUseOnlyEpollNativeTransport (false ).build ();
6362 try (DefaultAsyncHttpClient client = (DefaultAsyncHttpClient ) asyncHttpClient (config )) {
6463 assertDoesNotThrow (() -> client .prepareGet ("https://www.google.com" ).execute ().get ());
65- assertInstanceOf (IoUringIoHandler .class , client .channelManager ().getEventLoopGroup ());
64+ assertInstanceOf (MultiThreadIoEventLoopGroup .class , client .channelManager ().getEventLoopGroup ());
6665 }
6766 }
6867
Original file line number Diff line number Diff line change 77
88 <logger name =" org.eclipse" level =" INFO" />
99 <logger name =" org.apache" level =" INFO" />
10+ <logger name =" com.github.dockerjava" level =" INFO" />
1011
1112 <root level =" DEBUG" >
1213 <appender-ref ref =" CONSOLE" />
You can’t perform that action at this time.
0 commit comments