mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-05 13:29:13 +00:00
Fixed dispatch to application in case of empty chunked body.
This commit is contained in:
parent
061a2e85d9
commit
faec7259b2
@ -456,7 +456,9 @@ public class HttpChannelOverHttp extends HttpChannel implements HttpParser.Reque
|
||||
@Override
|
||||
public boolean messageComplete()
|
||||
{
|
||||
return onRequestComplete();
|
||||
boolean handle = onRequestComplete() || _delayedForContent;
|
||||
_delayedForContent = false;
|
||||
return handle;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user