Skip to content

Commit be6a29d

Browse files
author
Stephane Landelle
committed
Fix bug introduced in d9a218e
1 parent ac3e57f commit be6a29d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/netty/src/main/java/org/asynchttpclient/providers/netty/NettyAsyncHttpProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ private static HttpRequest construct(AsyncHttpClientConfig config, Request reque
587587
if (request.getVirtualHost() != null) {
588588
host = request.getVirtualHost();
589589
} else {
590-
AsyncHttpProviderUtils.getHost(uri);
590+
host = AsyncHttpProviderUtils.getHost(uri);
591591
}
592592

593593
HttpRequest nettyRequest;

0 commit comments

Comments
 (0)