Issue #1790 - SSL 100% CPU for HTTP/2.
DecryptedEndPoint.isInputShutdown() now also testing the raw EndPoint for input shutdown, not only the SSLEngine.
This commit is contained in:
parent
afaa170cd9
commit
9c03e66670
|
@ -1121,7 +1121,7 @@ public class SslConnection extends AbstractConnection
|
|||
@Override
|
||||
public boolean isInputShutdown()
|
||||
{
|
||||
return _sslEngine.isInboundDone();
|
||||
return getEndPoint().isInputShutdown() || _sslEngine.isInboundDone();
|
||||
}
|
||||
|
||||
private void notifyHandshakeSucceeded(SSLEngine sslEngine)
|
||||
|
|
Loading…
Reference in New Issue