X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6489c3c665762cb84eb752d53a91cd2356d1f791..e036bd4924cf444294483b064aaab28b6df43947:/src/store/run-process-panel/run-process-panel-actions.ts diff --git a/src/store/run-process-panel/run-process-panel-actions.ts b/src/store/run-process-panel/run-process-panel-actions.ts index f7649860e4..df2f4f2df2 100644 --- a/src/store/run-process-panel/run-process-panel-actions.ts +++ b/src/store/run-process-panel/run-process-panel-actions.ts @@ -143,12 +143,17 @@ export const runProcess = async (dispatch: Dispatch, getState: () => RootSt command: [ 'arvados-cwl-runner', '--api=containers', + '--local', '/var/lib/cwl/workflow.json#main', '/var/lib/cwl/cwl.input.json' ], outputPath: '/var/spool/cwl', priority: 1, outputName: advancedForm[OUTPUT_FIELD] ? advancedForm[OUTPUT_FIELD] : undefined, + properties: { + workflowUuid: selectedWorkflow.uuid, + workflowName: selectedWorkflow.name + } }; const newProcess = await services.containerRequestService.create(newProcessData); dispatch(navigateToProcess(newProcess.uuid));