jetty-9 - Always making SslConnection dispatch completion callbacks to avoid StackOverflowErrors.

This commit is contained in:
Simone Bordet 2012-09-17 09:50:27 +02:00
parent 5590f21296
commit 4f1a2990de
1 changed files with 1 additions and 2 deletions

View File

@ -110,8 +110,7 @@ public class SslConnection extends AbstractConnection
public SslConnection(ByteBufferPool byteBufferPool, Executor executor, EndPoint endPoint, SSLEngine sslEngine)
{
// TODO: here we are not dispatching completion callbacks (last parameter)... is that right ?
super(endPoint, executor, false);
super(endPoint, executor);
this._bufferPool = byteBufferPool;
this._sslEngine = sslEngine;
this._decryptedEndPoint = new DecryptedEndPoint();