Skip to content

Commit d68d5a5

Browse files
authored
[ISSUE #10183] Fix incorrect brokerName when constructing ProcessQueueTable with static topic (#10184)
1 parent 9c0cc51 commit d68d5a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalanceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public void unlockAll(final boolean oneway) {
140140
Set<MessageQueue> mqs = result.get(destBrokerName);
141141
if (null == mqs) {
142142
mqs = new HashSet<>();
143-
result.put(mq.getBrokerName(), mqs);
143+
result.put(destBrokerName, mqs);
144144
}
145145

146146
mqs.add(mq);

0 commit comments

Comments
 (0)