We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c401a4d commit 92010b5Copy full SHA for 92010b5
src/main/java/com/ning/http/client/providers/netty/NettyAsyncHttpProvider.java
@@ -182,7 +182,7 @@ public NettyAsyncHttpProvider(AsyncHttpClientConfig config) {
182
socketChannelFactory = new OioClientSocketChannelFactory(config.executorService());
183
} else {
184
socketChannelFactory = new NioClientSocketChannelFactory(
185
- Executors.newFixedThreadPool(100),
+ Executors.newCachedThreadPool(),
186
config.executorService());
187
}
188
plainBootstrap = new ClientBootstrap(socketChannelFactory);
0 commit comments