This commit is contained in:
Michael Andre Pearce 2018-10-29 20:40:51 +00:00
commit 0630a18135
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);
}