20882: Submit with priority 500, not priority 1 20882-fix-priority
authorPeter Amstutz <peter.amstutz@curii.com>
Fri, 18 Aug 2023 15:01:37 +0000 (11:01 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Fri, 18 Aug 2023 15:01:37 +0000 (11:01 -0400)
(Priority ought to be editable but that's a different story)

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 c615f2162d0de02e1c35ce6b708edf116d85c1b1..77c8c4a7e20903e2ce4ab033bfb57c4a0c81204b 100644 (file)
@@ -119,7 +119,7 @@ describe("run-process-panel-actions", () => {
                 outputName: "Output from basicFormTestName",
                 outputPath: "/var/spool/cwl",
                 ownerUuid: "zzzzz-tpzed-yid70bw31f51234",
-                priority: 1,
+                priority: 500,
                 properties: {
                     workflowName: "revsort.cwl",
                     template_uuid: "zzzzz-7fd4e-2tlnerdkxnl4fjt",
index e0dada5c053c340148c55ff5f5a6918adf778c93..58796295f824f55d61ee0d82f8013d1ca0c1b0b2 100644 (file)
@@ -183,7 +183,7 @@ export const runProcess = async (dispatch: Dispatch<any>, getState: () => RootSt
                 '/var/lib/cwl/cwl.input.json'
             ],
             outputPath: '/var/spool/cwl',
-            priority: 1,
+            priority: 500,
             outputName: advancedForm[OUTPUT_FIELD] ? advancedForm[OUTPUT_FIELD] : `Output from ${basicForm.name}`,
             properties: {
                 template_uuid: selectedWorkflow.uuid,