[ARVADOS-WORKBENCH2] created: 2.4.0-40-g627755be

Git user git at public.arvados.org
Wed Apr 27 20:23:31 UTC 2022


        at  627755be39986d87f292332c37b411147fa28d78 (commit)


commit 627755be39986d87f292332c37b411147fa28d78
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Wed Apr 27 16:23:08 2022 -0400

    19075: When constructing a workflow request, set use_existing=false
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

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<any>, getState: () => RootSt
             properties: {
                 workflowUuid: selectedWorkflow.uuid,
                 workflowName: selectedWorkflow.name
-            }
+            },
+            useExisting: false
         };
         const newProcess = await services.containerRequestService.create(newProcessData);
         dispatch(navigateTo(newProcess.uuid));

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list