mirror of https://github.com/apache/activemq.git
parent
9ecef371ae
commit
e546d29997
|
@ -76,15 +76,17 @@ public class SelectorAwareVirtualTopicInterceptor extends VirtualTopicIntercepto
|
||||||
|
|
||||||
if (cache != null) {
|
if (cache != null) {
|
||||||
final Set<String> selectors = cache.getSelector(dest.getActiveMQDestination().getQualifiedName());
|
final Set<String> selectors = cache.getSelector(dest.getActiveMQDestination().getQualifiedName());
|
||||||
for (String selector : selectors) {
|
if (selectors != null) {
|
||||||
try {
|
for (String selector : selectors) {
|
||||||
final BooleanExpression expression = getExpression(selector);
|
try {
|
||||||
matches = expression.matches(msgContext);
|
final BooleanExpression expression = getExpression(selector);
|
||||||
if (matches) {
|
matches = expression.matches(msgContext);
|
||||||
return true;
|
if (matches) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
LOG.error(e.getMessage(), e);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
|
||||||
LOG.error(e.getMessage(), e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -578,6 +578,23 @@ public class TwoBrokerVirtualTopicSelectorAwareForwardingTest extends
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void testSelectorNoMatchInCache() throws Exception {
|
||||||
|
clearSelectorCacheFiles();
|
||||||
|
|
||||||
|
// have the cache ignoreWildcardSelectors
|
||||||
|
final BrokerService brokerA = brokers.get("BrokerA").broker;
|
||||||
|
((SubQueueSelectorCacheBrokerPlugin)brokerA.getPlugins()[0]).setIgnoreWildcardSelectors(true);
|
||||||
|
|
||||||
|
startAllBrokers();
|
||||||
|
|
||||||
|
ActiveMQDestination consumerBQueue = createDestination("Consumer.B.VirtualTopic.tempTopic", false);
|
||||||
|
|
||||||
|
MessageConsumer nonMatchingConsumer = createConsumer("BrokerA", consumerBQueue, "foo = 'bar%'");
|
||||||
|
|
||||||
|
ActiveMQTopic virtualTopic = new ActiveMQTopic("VirtualTopic.tempTopic");
|
||||||
|
sendMessages("BrokerA", virtualTopic, 1, asMap("foo", "notBar"));
|
||||||
|
}
|
||||||
|
|
||||||
private HashMap<String, Object> asMap(String key, Object value) {
|
private HashMap<String, Object> asMap(String key, Object value) {
|
||||||
HashMap<String, Object> rc = new HashMap<String, Object>(1);
|
HashMap<String, Object> rc = new HashMap<String, Object>(1);
|
||||||
rc.put(key, value);
|
rc.put(key, value);
|
||||||
|
|
Loading…
Reference in New Issue