mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-03 20:39:18 +00:00
388652 Do not flush on handle return if request is suspended
This commit is contained in:
parent
842f30fb87
commit
a922d44ce0
@ -83,7 +83,7 @@ public class AsyncHttpConnection extends AbstractHttpConnection implements Async
|
||||
progress=true;
|
||||
|
||||
// Generate more output
|
||||
if (_generator.isCommitted() && !_generator.isComplete() && !_endp.isOutputShutdown())
|
||||
if (_generator.isCommitted() && !_generator.isComplete() && !_endp.isOutputShutdown() && !_request.getAsyncContinuation().isAsyncStarted())
|
||||
if (_generator.flushBuffer()>0)
|
||||
progress=true;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user