Ver Fonte

修改可能漏回收bytebuf的地方

vinson há 5 anos atrás
pai
commit
a4ea08c88a

+ 4 - 4
src/main/java/com/tidecloud/dataacceptance/service/HexBinaryAcceptanceHandlerAdapter.java

@@ -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);