Skip to content

Commit

Permalink
UNDERTOW-1011 If the response is sent before the chunked request is r…
Browse files Browse the repository at this point in the history
…ead the next request may not be processed
  • Loading branch information
stuartwdouglas committed Mar 11, 2017
1 parent 02affa4 commit ed1cfc8
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -167,6 +167,9 @@ public void ungetRequestBytes(final PooledByteBuffer unget) {
setExtraBytes(new ImmediatePooledByteBuffer(newBuffer));
}
}
if(channel.getSourceChannel().isReadResumed()) {
channel.getSourceChannel().wakeupReads();
}
}

@Override
Expand Down

0 comments on commit ed1cfc8

Please sign in to comment.