Skip to content

Commit 6c90e25

Browse files
author
Stephane Landelle
committed
Make Remotely Closed exception more generic
1 parent be6a29d commit 6c90e25

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
@@ -1357,7 +1357,7 @@ public void channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e) throws
13571357

13581358
if (future != null && !future.isDone() && !future.isCancelled()) {
13591359
if (!remotelyClosed(ctx.getChannel(), future)) {
1360-
abort(future, new IOException("Remotely Closed " + ctx.getChannel()));
1360+
abort(future, new IOException("Remotely Closed"));
13611361
}
13621362
} else {
13631363
closeChannel(ctx);

0 commit comments

Comments
 (0)