Mercurial Hosting > luan
diff src/org/eclipse/jetty/server/BlockingHttpConnection.java @ 934:fe461f7cfc8e
simplify AsyncContinuation
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 09 Oct 2016 21:03:00 -0600 |
parents | ad495e897c32 |
children | 866f2e801618 |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/BlockingHttpConnection.java Sun Oct 09 20:25:02 2016 -0600 +++ b/src/org/eclipse/jetty/server/BlockingHttpConnection.java Sun Oct 09 21:03:00 2016 -0600 @@ -118,7 +118,7 @@ } // If we don't have a committed response and we are not suspended - if (_endp.isInputShutdown() && _generator.isIdle() && !_request.getAsyncContinuation().isSuspended()) + if (_endp.isInputShutdown() && _generator.isIdle()) { // then no more can happen, so close. _endp.close();