mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@652305 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7a238556e3
commit
a61e5bce17
|
@ -57,10 +57,6 @@ public class ConduitBridge extends DemandForwardingBridge {
|
|||
}
|
||||
|
||||
protected boolean addToAlreadyInterestedConsumers(ConsumerInfo info) {
|
||||
if (info.getSelector() != null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// search through existing subscriptions and see if we have a match
|
||||
boolean matched = false;
|
||||
DestinationFilter filter = DestinationFilter.parseFilter(info.getDestination());
|
||||
|
|
|
@ -37,6 +37,7 @@ public class DemandSubscription {
|
|||
DemandSubscription(ConsumerInfo info) {
|
||||
remoteInfo = info;
|
||||
localInfo = info.copy();
|
||||
localInfo.setSelector(null);
|
||||
localInfo.setBrokerPath(info.getBrokerPath());
|
||||
localInfo.setNetworkSubscription(true);
|
||||
remoteSubsIds.add(info.getConsumerId());
|
||||
|
|
Loading…
Reference in New Issue