mirror of
https://github.com/apache/rocketmq.git
synced 2026-09-01 15:47:01 +08:00
[ISSUE #10183] Fix incorrect brokerName when constructing ProcessQueueTable with static topic (#10184)
This commit is contained in:
@@ -140,7 +140,7 @@ public abstract class RebalanceImpl {
|
||||
Set<MessageQueue> mqs = result.get(destBrokerName);
|
||||
if (null == mqs) {
|
||||
mqs = new HashSet<>();
|
||||
result.put(mq.getBrokerName(), mqs);
|
||||
result.put(destBrokerName, mqs);
|
||||
}
|
||||
|
||||
mqs.add(mq);
|
||||
|
||||
Reference in New Issue
Block a user