restart_flow_run
Restart a Prefect workflow execution by providing the flow run ID to initiate a new run from the same starting point.
Instructions
Restart a flow run.
Args: flow_run_id: The flow run UUID
Returns: Details of the new flow run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_run_id": {
"title": "Flow Run Id",
"type": "string"
}
},
"required": [
"flow_run_id"
],
"type": "object"
}