Run Workflow API - fix not output in the run_workflow endpoint (#2065)

This commit is contained in:
Shuchang Zheng
2025-04-01 16:51:19 -04:00
committed by GitHub
parent 62b783a569
commit abb8242a21

View File

@@ -1627,11 +1627,11 @@ async def run_workflow(
run_id=workflow_run.workflow_run_id,
run_type=RunType.workflow_run,
status=str(workflow_run.status),
output=workflow_run.output,
output=None,
failure_reason=workflow_run.failure_reason,
created_at=workflow_run.created_at,
modified_at=workflow_run.modified_at,
run_request=workflow_run_request,
downloaded_files=workflow_run.downloaded_files,
recording_url=workflow_run.recording_url,
downloaded_files=None,
recording_url=None,
)