[ISSUE #10183] Fix incorrect brokerName when constructing ProcessQueueTable with static topic (#10184)

This commit is contained in:
wizcraft_kris
2026-04-02 14:23:27 +08:00
committed by GitHub
parent 9c0cc510dc
commit d68d5a5461
@@ -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);