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
+5 -1
View File
@@ -5,7 +5,11 @@ from ..core.config import get_settings
from ..services.worker_registry_service import sweep_offline_workers
@celery_app.task(name="app.tasks.worker_registry_tasks.sweep_worker_registry_offline")
@celery_app.task(
name="app.tasks.worker_registry_tasks.sweep_worker_registry_offline",
ignore_result=True,
track_started=False,
)
def sweep_worker_registry_offline() -> dict[str, int]:
settings = get_settings()
updated_count = sweep_offline_workers(ttl_seconds=settings.worker_registry_ttl_seconds)