自动化立体仓库 - WCS系统
1
ZY
2025-03-18 f511b31ab0db0c9fa3d242e99a24e784bb6b602e
src/main/java/com/zy/core/netty/handle/ProtectorHandler.java
@@ -37,7 +37,7 @@
            if (IdleState.READER_IDLE == e.state()) {
                String uuid = ChannelCache.removeChannel(ctx.channel());
                ctx.close();
                if (!Cools.isEmpty(uuid)){
                if (!Cools.isEmpty(uuid)) {
                    log.info("uuid={} 空闲剔除", uuid);
                }
            }
@@ -51,7 +51,7 @@
    public void channelInactive(ChannelHandlerContext ctx) {
        String uuid = ChannelCache.removeChannel(ctx.channel());
        ctx.close();
        if (!Cools.isEmpty(uuid)){
        if (!Cools.isEmpty(uuid)) {
            log.info("通道 uuid={} 失去连接", uuid);
        }
    }