odbozhou commented on a change in pull request #778:
URL: https://github.com/apache/rocketmq-externals/pull/778#discussion_r696311485
##########
File path:
rocketmq-console/src/main/java/org/apache/rocketmq/console/service/impl/ConsumerServiceImpl.java
##########
@@ -169,11 +171,11 @@ public boolean apply(MessageQueue o) {
try {
ConsumerConnection consumerConnection =
mqAdminExt.examineConsumerConnectionInfo(groupName);
for (Connection connection :
consumerConnection.getConnectionSet()) {
- String clinetId = connection.getClientId();
- ConsumerRunningInfo consumerRunningInfo =
mqAdminExt.getConsumerRunningInfo(groupName, clinetId, false);
+ String clientId = connection.getClientId();
+ ConsumerRunningInfo consumerRunningInfo =
mqAdminExt.getConsumerRunningInfo(groupName, clientId, false);
for (MessageQueue messageQueue :
consumerRunningInfo.getMqTable().keySet()) {
-// results.put(messageQueue, clinetId + " " +
connection.getClientAddr());
- results.put(messageQueue, clinetId);
+ // results.put(messageQueue, clientId +
" " + connection.getClientAddr());
Review comment:
Please delete useless code by the way.
```suggestion
```
--
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]