Merge branch '18978-webshell-timeout-ux' into main. Closes #18978
authorStephen Smith <stephen@curii.com>
Thu, 5 May 2022 15:06:29 +0000 (11:06 -0400)
committerStephen Smith <stephen@curii.com>
Thu, 5 May 2022 15:06:29 +0000 (11:06 -0400)
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@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",
+                useExisting: false
             });
 
             // 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
-            }
+            },
+            useExisting: false
         };
         const newProcess = await services.containerRequestService.create(newProcessData);
         dispatch(navigateTo(newProcess.uuid));