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 caec155 commit 256d2e4Copy full SHA for 256d2e4
extras/registry/src/main/java/org/asynchttpclient/extras/registry/AsyncHttpClientFactory.java
@@ -63,7 +63,7 @@ public static AsyncHttpClient getAsyncHttpClient() {
63
public static AsyncHttpClient getAsyncHttpClient(AsyncHttpClientConfig config) {
64
if (attemptInstantiation()) {
65
try {
66
- Constructor<AsyncHttpClient> constructor = asyncHttpClientImplClass.getConstructor(DefaultAsyncHttpClientConfig.class);
+ Constructor<AsyncHttpClient> constructor = asyncHttpClientImplClass.getConstructor(AsyncHttpClientConfig.class);
67
return constructor.newInstance(config);
68
} catch (Exception e) {
69
throw new AsyncHttpClientImplException("Unable to find the instantiate the class specified by system property : "
0 commit comments