How Can I Program My Workflow to Retry in 1 Minute After a Timeout Occurs?

This topic was automatically generated from Slack. You can find the original thread here.

Anybody knows how I could program my Workflow to retry in 1 minute after this happens? The workflow runs every 30 minutes, and this timeout happens once or twice every month. Lightspeed generates a new token every 30 minutes, which needs to be updated in our CRM, otherwise the API calls fail for 30 minutes until my Workflow runs again. Any help is appreciated. Thanks!

Hi , yes, there are a couple of options:

  1. Check out our auto-retry feature, which will automatically retry errors on specific steps
  2. You can also use $.flow.rerun to programmatically retry failed steps: Pause, resume, and rerun a workflow

Thank you!