tabish121 commented on code in PR #5793: URL: https://github.com/apache/activemq-artemis/pull/5793#discussion_r2164429804
########## artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/broker/ProtonProtocolManager.java: ########## @@ -237,26 +237,30 @@ public ProtonClientProtocolManager createClientManager() { @Override public ConnectionEntry createConnectionEntry(Acceptor acceptorUsed, Connection remotingConnection) { - return internalConnectionEntry(remotingConnection, false, null, null); + return internalConnectionEntry(remotingConnection, false, null, null, null, null); } /** * This method is not part of the ProtocolManager interface because it only makes sense on AMQP. More specifically on * AMQP Bridges */ public ConnectionEntry createOutgoingConnectionEntry(Connection remotingConnection) { - return internalConnectionEntry(remotingConnection, true, null, null); + return internalConnectionEntry(remotingConnection, true, null, null, null, null); } public ConnectionEntry createOutgoingConnectionEntry(Connection remotingConnection, ClientSASLFactory saslFactory) { - return internalConnectionEntry(remotingConnection, true, saslFactory, null); + return internalConnectionEntry(remotingConnection, true, saslFactory, null, null, null); } public ConnectionEntry createOutgoingConnectionEntry(Connection remotingConnection, ClientSASLFactory saslFactory, Map<Symbol, Object> connectionProperties) { - return internalConnectionEntry(remotingConnection, true, saslFactory, connectionProperties); + return internalConnectionEntry(remotingConnection, true, saslFactory, connectionProperties, null, null); } - private ConnectionEntry internalConnectionEntry(Connection remotingConnection, boolean outgoing, ClientSASLFactory saslFactory, Map<Symbol, Object> connectionProperties) { + public ConnectionEntry createOutgoingConnectionEntry(Connection remotingConnection, ClientSASLFactory saslFactory, Map<Symbol, Object> connectionProperties, Symbol[] offeredCapabilities, Symbol[] desiredCapabilities) { + return internalConnectionEntry(remotingConnection, true, saslFactory, connectionProperties, offeredCapabilities, desiredCapabilities); Review Comment: Yep, forgot to back that out. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For additional commands, e-mail: gitbox-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact