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:
parent
629dd2c358
commit
af1159a24b
|
@ -609,7 +609,7 @@ public class NettyConnector extends AbstractConnector {
|
|||
|
||||
SslHandler handler = new SslHandler(engine);
|
||||
|
||||
pipeline.addLast(handler);
|
||||
pipeline.addLast("ssl", handler);
|
||||
}
|
||||
|
||||
if (httpEnabled) {
|
||||
|
|
Loading…
Reference in New Issue