fix(FN-2872): reduce blocked-task log noise and clarify routing details

- Add a Node Routing section in TaskDetailModal showing override, effective node/source, unavailable-node policy, and blocking reason
- Remove duplicate blocked-state heartbeat log output when the blocked reason has not changed
- Silence runtime onBlocked logging to avoid repeated blocked-task log spam
This commit is contained in:
Fusion
2026-04-28 09:09:20 -07:00
committed by gsxdsm
parent 8e33f3039d
commit 5ab5e5467e
3 changed files with 27 additions and 4 deletions

View File

@@ -284,9 +284,8 @@ export class InProcessRuntime
this.recordActivity();
runtimeLog.log(`Scheduled task ${task.id}`);
},
onBlocked: (task, blockedBy) => {
runtimeLog.log(`Task ${task.id} blocked by: ${blockedBy.join(", ")}`);
},
onBlocked: () => {},
});
// 5b. Initialize TaskExecutor