Fixed issue: NETTY-306 bug in passing large nonchunked data through ChunketWriteHandler

This commit is contained in:
Trustin Lee 2010-04-06 08:43:49 +00:00
parent 88f1332179
commit 11e5e2ba56

View File

@ -248,8 +248,9 @@ public class ChunkedWriteHandler implements ChannelUpstreamHandler, ChannelDowns
break;
}
} else {
MessageEvent currentEvent = this.currentEvent;
this.currentEvent = null;
ctx.sendDownstream(currentEvent);
currentEvent = null;
}
}