mirror of
https://github.com/apache/rocketmq-dashboard.git
synced 2025-09-11 03:49:06 +08:00
Fix too much warn log because non-exist retry topic (#681)
Co-authored-by: zhangxu16 <zhangxu16@xiaomi.com>
This commit is contained in:
@@ -95,7 +95,7 @@ public class ConsumerServiceImpl extends AbstractCommonService implements Consum
|
|||||||
consumeStats = mqAdminExt.examineConsumeStats(consumerGroup);
|
consumeStats = mqAdminExt.examineConsumeStats(consumerGroup);
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
logger.warn("examineConsumeStats exception, " + consumerGroup, e);
|
logger.warn("examineConsumeStats exception to consumerGroup {}, response [{}]", consumerGroup, e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
ConsumerConnection consumerConnection = null;
|
ConsumerConnection consumerConnection = null;
|
||||||
@@ -103,7 +103,7 @@ public class ConsumerServiceImpl extends AbstractCommonService implements Consum
|
|||||||
consumerConnection = mqAdminExt.examineConsumerConnectionInfo(consumerGroup);
|
consumerConnection = mqAdminExt.examineConsumerConnectionInfo(consumerGroup);
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
logger.warn("examineConsumerConnectionInfo exception, " + consumerGroup, e);
|
logger.warn("examineConsumeStats exception to consumerGroup {}, response [{}]", consumerGroup, e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
groupConsumeInfo.setGroup(consumerGroup);
|
groupConsumeInfo.setGroup(consumerGroup);
|
||||||
|
Reference in New Issue
Block a user