From 20afa36708e2cd0958e84a74fac7e128b6a7a67d Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Wed, 27 Apr 2022 16:18:57 -0400 Subject: [PATCH] 19075: When constructing a workflow request, set use_existing=false refs #19075 Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- apps/workbench/app/controllers/work_units_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/workbench/app/controllers/work_units_controller.rb b/apps/workbench/app/controllers/work_units_controller.rb index 237cf27555..86e3cdd91d 100644 --- a/apps/workbench/app/controllers/work_units_controller.rb +++ b/apps/workbench/app/controllers/work_units_controller.rb @@ -83,6 +83,7 @@ class WorkUnitsController < ApplicationController attrs['properties'] = {'template_uuid' => template_uuid} attrs['priority'] = 1 attrs['state'] = "Uncommitted" + attrs['use_existing'] = false # required attrs['container_image'] = "arvados/jobs" -- 2.30.2