fixed close on early shutdown
This commit is contained in:
parent
dbd97a52ae
commit
a00f790bc5
|
@ -235,7 +235,6 @@ public class SslConnection extends AbstractConnection implements AsyncConnection
|
|||
/* ------------------------------------------------------------ */
|
||||
public void onClose()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
|
|
|
@ -161,7 +161,7 @@ public class AsyncHttpConnection extends AbstractHttpConnection implements Async
|
|||
if (_generator.isIdle() && !_request.getAsyncContinuation().isSuspended())
|
||||
{
|
||||
// then no more can happen, so close.
|
||||
_endp.shutdownOutput();
|
||||
_endp.close();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue