19075: When constructing a workflow request, set use_existing=false 19075-no-acr-reuse
authorPeter Amstutz <peter.amstutz@curii.com>
Wed, 27 Apr 2022 20:23:08 +0000 (16:23 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Wed, 27 Apr 2022 20:23:08 +0000 (16:23 -0400)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

src/store/run-process-panel/run-process-panel-actions.test.ts
src/store/run-process-panel/run-process-panel-actions.ts

index 7edc4cffd49b5a5cf806ddf54d8ea9a4662e6430..745be88fb5f66a1c6d0c9d1a3f13f047b841b50e 100644 (file)
@@ -131,6 +131,7 @@ describe("run-process-panel-actions", () => {
                 },
                 schedulingParameters: { max_run_time: undefined },
                 state: "Committed",
                 },
                 schedulingParameters: { max_run_time: undefined },
                 state: "Committed",
+                useExisting: false
             });
 
             // and
             });
 
             // and
index b421f0723a0f34a67a6c835e5764ed0f34d0882a..adb5ade7c2bb87eb0dce96ae5769eacb10632af5 100644 (file)
@@ -177,7 +177,8 @@ export const runProcess = async (dispatch: Dispatch<any>, getState: () => RootSt
             properties: {
                 workflowUuid: selectedWorkflow.uuid,
                 workflowName: selectedWorkflow.name
             properties: {
                 workflowUuid: selectedWorkflow.uuid,
                 workflowName: selectedWorkflow.name
-            }
+            },
+            useExisting: false
         };
         const newProcess = await services.containerRequestService.create(newProcessData);
         dispatch(navigateTo(newProcess.uuid));
         };
         const newProcess = await services.containerRequestService.create(newProcessData);
         dispatch(navigateTo(newProcess.uuid));