Repository: activemq-artemis Updated Branches: refs/heads/master 629dd2c35 -> 499273bd6
ARTEMIS-1598 modify SslHandler name in connector Use the same "name" when inserting the Netty SslHandler into the pipeline for both acceptors and connectors. Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/af1159a2 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/af1159a2 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/af1159a2 Branch: refs/heads/master Commit: af1159a24b6ade4bfa3962dfc06940cefab6e4e3 Parents: 629dd2c Author: Ulf Lilleengen <[email protected]> Authored: Wed Jan 10 20:12:34 2018 +0100 Committer: Justin Bertram <[email protected]> Committed: Thu Jan 11 09:41:23 2018 -0600 ---------------------------------------------------------------------- .../activemq/artemis/core/remoting/impl/netty/NettyConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/af1159a2/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java ---------------------------------------------------------------------- diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java index 792c8aa..5874820 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java @@ -609,7 +609,7 @@ public class NettyConnector extends AbstractConnector { SslHandler handler = new SslHandler(engine); - pipeline.addLast(handler); + pipeline.addLast("ssl", handler); } if (httpEnabled) {
