[ https://issues.apache.org/jira/browse/ARTEMIS-3243?focusedWorklogId=625644&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-625644 ]
ASF GitHub Bot logged work on ARTEMIS-3243: ------------------------------------------- Author: ASF GitHub Bot Created on: 20/Jul/21 15:33 Start Date: 20/Jul/21 15:33 Worklog Time Spent: 10m Work Description: clebertsuconic commented on a change in pull request #3633: URL: https://github.com/apache/activemq-artemis/pull/3633#discussion_r673233962 ########## File path: artemis-protocols/artemis-amqp-protocol/src/main/java/org/apache/activemq/artemis/protocol/amqp/proton/AMQPConnectionContext.java ########## @@ -340,7 +344,19 @@ protected void remoteLinkOpened(Link link) throws Exception { } private boolean isReplicaTarget(Link link) { - return link != null && link.getTarget() != null && link.getTarget().getAddress() != null && link.getTarget().getAddress().equals(ProtonProtocolManager.MIRROR_ADDRESS); + boolean hasMirror = false; + + Terminus terminus = (Terminus)link.getTarget(); + if (terminus != null && terminus.getCapabilities() != null) { + for (Symbol s : terminus.getCapabilities()) { + if (s.equals(AMQPMirrorControllerSource.MIRROR_CAPABILITY)) { + hasMirror = true; + break; + } + } + } Review comment: I will use internal-address -- 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 Issue Time Tracking ------------------- Worklog Id: (was: 625644) Time Spent: 24h (was: 23h 50m) > Enhance AMQP Mirror support with dual mirror > -------------------------------------------- > > Key: ARTEMIS-3243 > URL: https://issues.apache.org/jira/browse/ARTEMIS-3243 > Project: ActiveMQ Artemis > Issue Type: Bug > Affects Versions: 2.17.0 > Reporter: Clebert Suconic > Assignee: Clebert Suconic > Priority: Major > Fix For: 2.18.0 > > Time Spent: 24h > Remaining Estimate: 0h > > at the current Mirror version, we can only mirror into a single direction. > With this enhancement the two (or more brokers) would be connected to each > other, each one having its own ID, and each one would send updates to the > other broker. > The outcome is that if you just transferred producers and consumers from one > broker into the other, the fallback would be automatic and simple. No need to > disable and enable mirror options. -- This message was sent by Atlassian Jira (v8.3.4#803005)