ARTEMIS-1598 modify SslHandler name in connector

Use the same "name" when inserting the Netty SslHandler into the
pipeline for both acceptors and connectors.
This commit is contained in:
Ulf Lilleengen 2018-01-10 20:12:34 +01:00 committed by Justin Bertram
parent 629dd2c358
commit af1159a24b
1 changed files with 1 additions and 1 deletions

View File

@ -609,7 +609,7 @@ public class NettyConnector extends AbstractConnector {
SslHandler handler = new SslHandler(engine);
pipeline.addLast(handler);
pipeline.addLast("ssl", handler);
}
if (httpEnabled) {