ARTEMIS-814: Notify connection listener of connection created

This commit is contained in:
Ulf Lilleengen 2016-10-21 15:14:51 +02:00 committed by Clebert Suconic
parent 224770168b
commit b2a5fe19d3
1 changed files with 1 additions and 0 deletions

View File

@ -912,6 +912,7 @@ public class NettyConnector extends AbstractConnector {
if (connections.putIfAbsent(connection.getID(), connection) != null) {
throw ActiveMQClientMessageBundle.BUNDLE.connectionExists(connection.getID());
}
listener.connectionCreated(component, connection, protocol);
}
@Override