Error Trigger (Not Supported)

The Error Trigger node is not supported on indie.money.

Written By pvdyck

Last updated About 20 hours ago

Error Trigger (Not Supported)

The Error Trigger node is not supported on indie.money.

Why

In standard n8n, the Error Trigger relies on a server-side orchestrator that routes failed workflow executions to a designated error workflow. indie.money runs workflows in isolated Cloudflare Workers without a persistent orchestrator, so there is no mechanism to detect a failure in one workflow and trigger another.

Alternative

Use the Stop and Error node within your workflow to handle errors explicitly. Combine it with the IF node or error outputs on individual nodes to build error-handling logic inside the same workflow.

Related