ARTEMIS-856 small fix to avoid re-distributor being assigned a group

This commit is contained in:
Michael André Pearce 2018-10-16 22:55:24 +01:00 committed by Michael Andre Pearce
parent a78ed9a2b3
commit b0d36ebc50
1 changed files with 2 additions and 2 deletions

View File

@ -2531,7 +2531,7 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
removeMessageReference(holder, ref);
if (groupID != null && groupConsumer == null) {
if (groupID != null && groupConsumer == null && redistributor == null) {
groups.put(groupID, consumer);
}
@ -3110,7 +3110,7 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
HandleStatus status = handle(ref, consumer);
if (status == HandleStatus.HANDLED) {
if (groupID != null && groupConsumer == null) {
if (groupID != null && groupConsumer == null && redistributor == null) {
groups.put(groupID, consumer);
}