Skip to content

Commit c1eb629

Browse files
committed
Set multiplier to two.
1 parent 0eb1901 commit c1eb629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/main/java/org/asynchttpclient/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", "AsyncHttpClient/" + AHC_VERSION);
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)