Skip to content

Commit 80fac58

Browse files
committed
Set multiplier to two.
1 parent 8363477 commit 80fac58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/ning/http/client/AsyncHttpClientConfigBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void configureDefaults() {
5454
maxDefaultRedirects = Integer.getInteger(ASYNC_CLIENT + "defaultMaxRedirects", 5);
5555
compressionEnabled = Boolean.getBoolean(ASYNC_CLIENT + "compressionEnabled");
5656
userAgent = System.getProperty(ASYNC_CLIENT + "userAgent", "NING/1.0");
57-
ioThreadMultiplier = Integer.getInteger(ASYNC_CLIENT + "ioThreadMultiplier", 8);
57+
ioThreadMultiplier = Integer.getInteger(ASYNC_CLIENT + "ioThreadMultiplier", 2);
5858

5959
boolean useProxySelector = Boolean.getBoolean(ASYNC_CLIENT + "useProxySelector");
6060
boolean useProxyProperties = Boolean.getBoolean(ASYNC_CLIENT + "useProxyProperties");

0 commit comments

Comments
 (0)