Skip to Content
๐Ÿ“š ReferenceDebug a Run

Debug a Run

Debug one run by finding the first result that differs from what you expected. The final red Step may only be where an earlier data or connection problem became visible.

Follow the run from the first wrong result

Open the run

Find the event or time in the Execution Log. If no run exists, troubleshoot the trigger instead with Workflow Did Not Start or Is Still Waiting.

Find the first unexpected Step

Follow the route through the canvas. Stop at the first Step that failed, was skipped unexpectedly, or produced the wrong value.

Read its Executions entry

Open the Stepโ€™s App drawer, go to Executions, and read the full message, input, and output for that run. Copy an exact validation message into Step Error Messages.

Trace the input upstream

If the input is wrong, open the upstream Stepโ€™s Executions entry. Continue backward until you find where the value or shape first changed.

Reproduce the smallest safe part

Use Test & Debug on the affected Step with controlled data. Check the connected app before repeating a create, update, send, or charge action.

The workflow ran twice

First decide whether you are looking at two runs or two attempts:

  • Two execution ids: the trigger started two runs. A webhook creates one run for every request it receives, including duplicate deliveries from the sender. Scheduled workflows can overlap when a run lasts longer than the schedule interval.
  • One execution with an Attempt 2 or Attempt 2 of 4 marker: this is Retry on fail repeating one Step. Single attempts and some historical entries may not show an attempt marker.
  • One execution with several unmarked entries on a looping Step: these may be separate items or loop passes, not retries.

Compare the trigger payloads and timestamps. For webhooks, use the senderโ€™s stable event id to recognise an event already processed. For destination writes, prefer an idempotency key or an update keyed by a stable record id where the app supports it.

Route the finding

When the documentation does not have the answer

Take it to the Glow Forumย . Post the workflow name, the Step that failed, and the error text as it appears in Executions. The exact error text gives others enough information to identify the next check.

Whatโ€™s Next?