From: Peter Amstutz Date: Wed, 27 Apr 2022 20:23:08 +0000 (-0400) Subject: 19075: When constructing a workflow request, set use_existing=false X-Git-Tag: 2.4.1~1^2~6^2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/627755be39986d87f292332c37b411147fa28d78 19075: When constructing a workflow request, set use_existing=false Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- diff --git a/src/store/run-process-panel/run-process-panel-actions.test.ts b/src/store/run-process-panel/run-process-panel-actions.test.ts index 7edc4cff..745be88f 100644 --- a/src/store/run-process-panel/run-process-panel-actions.test.ts +++ b/src/store/run-process-panel/run-process-panel-actions.test.ts @@ -131,6 +131,7 @@ describe("run-process-panel-actions", () => { }, schedulingParameters: { max_run_time: undefined }, state: "Committed", + useExisting: false }); // and 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 b421f072..adb5ade7 100644 --- a/src/store/run-process-panel/run-process-panel-actions.ts +++ b/src/store/run-process-panel/run-process-panel-actions.ts @@ -177,7 +177,8 @@ export const runProcess = async (dispatch: Dispatch, getState: () => RootSt properties: { workflowUuid: selectedWorkflow.uuid, workflowName: selectedWorkflow.name - } + }, + useExisting: false }; const newProcess = await services.containerRequestService.create(newProcessData); dispatch(navigateTo(newProcess.uuid));