backend - add 'paused' as a workflow run status (#3800)

This commit is contained in:
Jonathan Dobson
2025-10-23 09:58:43 -04:00
committed by GitHub
parent f66f50fc93
commit ae5a0de705
4 changed files with 9 additions and 1 deletions

View File

@@ -119,6 +119,7 @@ async def cancel_workflow_run(
WorkflowRunStatus.running,
WorkflowRunStatus.created,
WorkflowRunStatus.queued,
WorkflowRunStatus.paused,
]:
continue
await app.WORKFLOW_SERVICE.mark_workflow_run_as_canceled(child_workflow_run.workflow_run_id)