Supervise the loops a flow starts, and give up loudly

A node's subscription, schedule or poll loop was a bare asyncio task: one
that raised outside its own retry handling was simply gone, and the node
went on being listed as running while nothing listened any more.

Those loops now run under a supervisor that restarts them with a growing
delay and quarantines a flow that burns through five restarts in five
minutes — a flow crash-looping every second is worse than one that is
visibly stopped, and the dashboard can now say which.

The MQTT subscription loses its private five-second reconnect in the
process: one backoff policy per socket, and it belongs to the supervisor.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011LF61rxW1FG5YCD2J9YqjY
This commit is contained in:
root
2026-08-16 07:23:02 +02:00
co-authored by Claude Fable 5
parent 5462842b8a
commit e7e48c4f13
10 changed files with 358 additions and 61 deletions
+5
View File
@@ -364,6 +364,11 @@ export const FlowSummarySchema = {
type: 'boolean',
title: 'Paused',
default: false
},
quarantined: {
type: 'boolean',
title: 'Quarantined',
default: false
}
},
type: 'object',
+1
View File
@@ -101,6 +101,7 @@ export type FlowSummary = {
has_draft?: boolean;
enabled?: boolean;
paused?: boolean;
quarantined?: boolean;
};
/**