You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a problem, the packet was sent and returned success promise, but the server never received any packet about this.
Success:
02e3ca0f-433f-4f10-af9f-7af4178c81f2|1741440585811
true
ACTIVE
PREREAD
!!!
WROTE
!!!
WROTE
!!!
WROTE
!!!
WROTE
Fail:
234fd7ce-dcf6-42c6-acc0-76253471216c|1741440589633
true
ACTIVE
PREREAD
!!!
WROTE
Code1:
System.out.println(UUID.randomUUID() + "|" + System.currentTimeMillis());
System.out.println(ch.isActive());
ch.pipeline().addLast("hackfix",new ChannelInboundHandlerAdapter(){
I found a problem, the packet was sent and returned success promise, but the server never received any packet about this.
Success:
02e3ca0f-433f-4f10-af9f-7af4178c81f2|1741440585811
true
ACTIVE
PREREAD
!!!
WROTE
!!!
WROTE
!!!
WROTE
!!!
WROTE
Fail:
234fd7ce-dcf6-42c6-acc0-76253471216c|1741440589633
true
ACTIVE
PREREAD
!!!
WROTE
Code1:
System.out.println(UUID.randomUUID() + "|" + System.currentTimeMillis());
System.out.println(ch.isActive());
ch.pipeline().addLast("hackfix",new ChannelInboundHandlerAdapter(){
Code2:
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
if (msg instanceof ByteBuf) {
ByteBuf byteBuf = (ByteBuf) msg;
if (closed) {
Shared.rel(byteBuf);
return;
}
// thanks