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

@@ -179,7 +179,12 @@ async def verify_workflow_run(
return None, None
if workflow_run.status not in [WorkflowRunStatus.created, WorkflowRunStatus.queued, WorkflowRunStatus.running]:
if workflow_run.status not in [
WorkflowRunStatus.created,
WorkflowRunStatus.queued,
WorkflowRunStatus.running,
WorkflowRunStatus.paused,
]:
LOG.info(
"Workflow run is not running.",
workflow_run_status=workflow_run.status,