|
@@ -367,6 +367,11 @@ public class NettyServerCnxn extends ServerCnxn {
|
|
checkIsInEventLoop("processMessage");
|
|
checkIsInEventLoop("processMessage");
|
|
LOG.debug("0x{} queuedBuffer: {}", Long.toHexString(sessionId), queuedBuffer);
|
|
LOG.debug("0x{} queuedBuffer: {}", Long.toHexString(sessionId), queuedBuffer);
|
|
|
|
|
|
|
|
+ if (closingChannel) {
|
|
|
|
+ LOG.debug("Drop incoming message during connection closing for session 0x{}", Long.toHexString(sessionId));
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (LOG.isTraceEnabled()) {
|
|
if (LOG.isTraceEnabled()) {
|
|
LOG.trace("0x{} buf {}", Long.toHexString(sessionId), ByteBufUtil.hexDump(buf));
|
|
LOG.trace("0x{} buf {}", Long.toHexString(sessionId), ByteBufUtil.hexDump(buf));
|
|
}
|
|
}
|