Writing tasks
Replaying
A replay is a copy of a run with the same payload but against the latest version in that environment. This is useful if something went wrong and you want to try again with the latest version of your code.
Replaying from the UI
1
Click the Replay button in the top right
2
Confirm replay settings
You can edit the payload
(if available) and choose the environment to replay the run in.Replaying using the SDK
You can replay a run using the SDK:
When you call trigger()
or batchTrigger()
on a task you receive back a run handle which has an id
property. You can use that id
to replay the run.
You can also access the run id from inside a run. You could write this to your database and then replay it later.
Bulk replaying
See Bulk actions for more information.
Was this page helpful?