We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc61a7b commit e2d77e4Copy full SHA for e2d77e4
fe/fe-core/src/main/java/org/apache/doris/task/AgentTaskCleanupDaemon.java
@@ -45,7 +45,8 @@ public AgentTaskCleanupDaemon() {
45
protected void runAfterCatalogReady() {
46
LOG.info("Begin to clean up inactive agent tasks");
47
SystemInfoService infoService = Env.getCurrentSystemInfo();
48
- infoService.getAllClusterBackends(false)
+ infoService.getAllClusterBackendsNoException()
49
+ .values()
50
.forEach(backend -> {
51
long id = backend.getId();
52
if (backend.isAlive()) {
0 commit comments