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 104865d commit a8a8faaCopy full SHA for a8a8faa
src/main/java/com/ning/http/client/providers/netty/request/NettyConnectListener.java
@@ -115,9 +115,10 @@ public void operationComplete(ChannelFuture handshakeFuture) throws Exception {
115
116
writeRequest(channel, poolKey);
117
} else {
118
- abortChannelPreemption(poolKey);
119
- future.abort(new ConnectException("HostnameVerifier exception"));
+ onFutureFailure(channel, new ConnectException("HostnameVerifier exception"));
120
}
+ } else {
121
+ onFutureFailure(channel, handshakeFuture.getCause());
122
123
124
});
0 commit comments