[AMQ-9233] Prevent NPE in SubQueueSelectorCacheBroker

This commit is contained in:
Jean-Baptiste Onofré 2023-06-21 07:38:36 +02:00 committed by JB Onofré
parent 52d70325ca
commit 95e3c2a1aa
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class SubQueueSelectorCacheBroker extends BrokerFilter implements Runnabl
if (singleSelectorPerDestination) {
String destinationName = info.getDestination().getQualifiedName();
Set<String> selectors = subSelectorCache.get(destinationName);
if (info.getSelector() == null && selectors.size() > 1) {
if (info.getSelector() == null && (selectors != null && selectors.size() > 1)) {
boolean removed = selectors.remove(MATCH_EVERYTHING);
LOG.debug("A non-selector consumer has dropped. Removing the catchall matching pattern 'TRUE'. Successful? " + removed);
}