Skip to content

Commit fa577ad

Browse files
committed
HBASE-25933 Log trace raw exception, instead of cause message in NettyRpcServerRequestDecoder (#3323)
Signed-off-by: Rushabh Shah <[email protected]> Signed-off-by: Peter Somogyi <[email protected]> Signed-off-by: Josh Elser <[email protected]> (Cherry picked from commit feb89d9)
1 parent 2868994 commit fa577ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcServerRequestDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void channelInactive(ChannelHandlerContext ctx) throws Exception {
7474
public void exceptionCaught(ChannelHandlerContext ctx, Throwable e) {
7575
allChannels.remove(ctx.channel());
7676
NettyRpcServer.LOG.trace("Connection {}; caught unexpected downstream exception.",
77-
ctx.channel().remoteAddress(), e.getCause());
77+
ctx.channel().remoteAddress(), e);
7878
ctx.channel().close();
7979
}
8080
}

0 commit comments

Comments
 (0)