|
@@ -20,12 +20,12 @@ public abstract class HexBinaryAcceptanceHandlerAdapter extends AcceptanceInboun
|
|
|
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
|
|
|
super.channelRead(ctx, msg);
|
|
|
ByteBuf in = (ByteBuf) msg;
|
|
|
- if (!in.isReadable()) {
|
|
|
- return;
|
|
|
- }
|
|
|
- printAcceptanceData(in, ctx);
|
|
|
|
|
|
try {
|
|
|
+ if (!in.isReadable()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ printAcceptanceData(in, ctx);
|
|
|
handle(in, ctx.channel());
|
|
|
} catch (Exception e) {
|
|
|
logger.error(e.getMessage(), e);
|