git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@430068 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2006-08-09 15:10:26 +00:00
parent 3e945b5a91
commit ed49ada604
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ public class ConduitBridge extends DemandForwardingBridge{
DemandSubscription ds = (DemandSubscription)i.next();
if (filter.matches(ds.getLocalInfo().getDestination())){
//add the interest in the subscription
ds.add(ds.getRemoteInfo().getConsumerId());
//ds.add(ds.getRemoteInfo().getConsumerId());
ds.add(info.getConsumerId());
matched = true;
//continue - we want interest to any existing DemandSubscriptions
}