Ensure that either SslHandler's handshake timeout or the handshake

itself (or its failure) take place but not both.
This commit is contained in:
ab 2012-10-10 14:16:13 +02:00
parent 129c19c33e
commit ce88ae3889

View File

@ -300,9 +300,10 @@ public class SslHandler
}
SSLException e = new SSLException("handshake timed out");
future.setFailure(e);
ctx.fireExceptionCaught(e);
ctx.close();
if ( future.setFailure(e) ){
ctx.fireExceptionCaught(e);
ctx.close();
}
}
}, handshakeTimeoutMillis, TimeUnit.MILLISECONDS);
} else {
@ -320,9 +321,10 @@ public class SslHandler
handshakeFutures.add(future);
flush(ctx, ctx.newFuture());
} catch (Exception e) {
future.setFailure(e);
ctx.fireExceptionCaught(e);
ctx.close();
if ( future.setFailure(e) ) {
ctx.fireExceptionCaught(e);
ctx.close();
}
}
}
});