fix:[FL-203][调度监控页面执行节点离线巡检日志不要展示]

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
chengkai3
2026-06-28 09:54:03 +08:00
parent f020bdc3c9
commit f866ee3fa8
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -357,7 +357,7 @@ export default function AdminTaskMonitorPage() {
rows.push(...toTaskRows(overview.worker, "SCHEDULED", overview.scheduled_tasks));
rows.push(...toTaskRows(overview.worker, "RECENT", overview.recent_tasks));
}
return rows;
return rows.filter((task) => task.name !== "app.tasks.worker_registry_tasks.sweep_worker_registry_offline");
}, [allTasksQuery.data]);
const filteredTaskRows = useMemo(() => {