Issue #1418 update after review

This commit is contained in:
Greg Wilkins 2017-03-30 19:29:26 +11:00
parent dc759db065
commit ea39cbef57
1 changed files with 2 additions and 1 deletions

View File

@ -439,6 +439,7 @@ public class HttpChannelState
case POSSIBLE: case POSSIBLE:
_state=State.ASYNC_IO; _state=State.ASYNC_IO;
_asyncRead=AsyncRead.PRODUCING;
action=Action.READ_PRODUCE; action=Action.READ_PRODUCE;
break async; break async;
@ -1269,7 +1270,7 @@ public class HttpChannelState
try(Locker.Lock lock= _locker.lock()) try(Locker.Lock lock= _locker.lock())
{ {
if (LOG.isDebugEnabled()) if (LOG.isDebugEnabled())
LOG.debug("onReadReady {}",toStringLocked()); LOG.debug("onReadPossible {}",toStringLocked());
switch(_asyncRead) switch(_asyncRead)
{ {