RockteMQ-AI commented on issue #10768: URL: https://github.com/apache/rocketmq/issues/10768#issuecomment-5163342958
**Issue Evaluation** Category: `type/bug` | Status: **Confirmed** The reported issue has been verified against the current codebase on the `develop` branch. **Root Cause:** In `RouteActivity#queryRoute`, the loop over `proxyTopicRouteData.getQueueDatas()` uses `break` instead of `continue` when `brokerIdMap == null` (line 142). This means if any single broker entry is missing from the broker map, the entire loop terminates and all subsequent valid queues are silently skipped. **Impact:** Route queries can return incomplete results when any broker is temporarily unavailable or not yet registered, causing clients to see only a subset of available message queues. **Severity:** medium A fix proposal can be generated. Reply with feedback if needed. --- *Automated evaluation by github-manager-bot* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
