Diagnose the run
1
Open the run
Open Workflow Runs from the project, or open Run History inside the
workflow editor and select the affected run.
2
Classify the failure
If the run is Failed, read the status tooltip for its run-level reason. If
it is Completed with an amber warning, inspect the nodes that stored
errors.
3
Switch to Snapshot
Use Snapshot (Read-Only) to inspect the graph that actually executed. Do
not assume the current canvas still matches an older run.
4
Inspect node data
Open the failed node’s error and review upstream outputs. Confirm the input
shape, account, identifiers, and values the node received.
5
Fix the current workflow
Switch to Overlay or deselect the run, make the correction, and wait until
the editor says Saved.
6
Test with the saved payload
Choose Re-run to use the same trigger data with the current saved graph,
or send a new representative trigger event.
Run-level failures
Run-level failures occur before node processing begins or when the workflow runner itself cannot complete its job.
A failed eligibility check is not retried automatically. Fix the cause, then
send a new event or choose Re-run.
A manual re-run goes through the same Live/Paused and billing checks as an
external trigger event.
Node errors in a Completed run
WorkflowDog records node errors independently and continues settling the graph. The overall run can reach Completed even when one or more nodes failed. Check:- The failed node’s exact stored message.
- Whether its connected inputs produced values.
- Whether a required static input is empty.
- Whether an integration account is healthy and has the required permission.
- Whether an external identifier still exists and belongs to that account.
- Whether the value’s type matches what the node accepts.
Inspect the graph that actually ran
- Snapshot (Read-Only)
- Overlay
This is the authoritative historical graph. Use it to confirm the node
version, connections, static values, disabled nodes, and layout selected
when the run was queued.
Re-run safely
Re-run copies the old run’s trigger payload into a new run. It does not execute the old graph. Before re-running:- Confirm the editor shows Saved.
- Confirm the workflow is Live.
- Confirm integration accounts are healthy.
- Consider whether the workflow sends messages, charges payments, creates records, or performs another non-idempotent action.
- Check whether the original run partially completed before its node error.
Integration errors
When an account-backed node errors:1
Check account health
Open Integrations and look for Needs Reconnecting.
2
Reconnect or approve permissions
Open the node’s account selector. Reauthorize the account if credentials are
invalid or the node says required permissions are missing.
3
Confirm the selected account
Unhealthy or insufficiently scoped accounts can be cleared automatically from
the node. Select the healthy account again.
4
Verify the external resource
Confirm IDs, mailbox folders, labels, files, bases, tables, and other
external resources still exist and are accessible to that account.
Variable errors
For project variable problems:- A missing key returns its default or
null; it is not a run-level failure. - Key matching is exact and project-scoped.
- Appending requires the existing value to be a list.
- Parallel append operations can overwrite one another because each operation reads and replaces the list.
- Viewers can inspect values but only Editors can clear them.
Scheduled runs
A Scheduled run can be cancelled before execution. Pending and Running runs cannot be cancelled from the dashboard. If a delayed run executed after the workflow was paused, it was already accepted and scheduled before the pause. Pausing does not purge the delayed queue.Save failures
The workflow editor shows Waiting to save, Saving, Saved, or Failed to save. Do not test a change until the status reaches Saved. WorkflowDog prevents normal navigation while a save is still pending, but a failed save means the current graph may not be on the server. A graph containing a circular dependency is rejected during save. Remove the cycle and wait for a successful save before re-running.Escalate a repeatable worker failure
When The worker encountered an error repeats with the same saved graph and payload:- Star the representative run.
- Record the workflow name, run date and time, and run ID from its URL or request data.
- Note whether a new trigger event and a manual re-run fail the same way.
- Contact WorkflowDog support without copying secrets into the message.
Quick symptom guide
No run appears at all
No run appears at all
Verify the external trigger configuration, provider permissions, and
account health. Then send a new matching event. A trigger filter mismatch
can prevent WorkflowDog from producing a run.
The run fails immediately without node activity
The run fails immediately without node activity
Read the run-level failure tooltip. Paused and billing failures happen before
node execution.
The run is Completed but downstream work is missing
The run is Completed but downstream work is missing
Look for an amber warning and inspect the earliest node error. Downstream
nodes may not receive a signal after an upstream failure.
The fix works for new events but not Re-run
The fix works for new events but not Re-run
Compare the saved trigger payload with the new event. Re-run preserves the
old payload, which may reference an external resource that no longer exists
or contain a value your new event does not.