From 99a95f87ed02df226788dc06b17373652220164b Mon Sep 17 00:00:00 2001 From: Sven Ketelsen Date: Fri, 1 Dec 2023 10:48:56 +0100 Subject: [PATCH] chore: bugfix for SMA-2598 - fixed invalid config snippet --- smardigo/pmci/process/smardigo-management-action.bpmn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smardigo/pmci/process/smardigo-management-action.bpmn b/smardigo/pmci/process/smardigo-management-action.bpmn index 06393bd..b5d2403 100644 --- a/smardigo/pmci/process/smardigo-management-action.bpmn +++ b/smardigo/pmci/process/smardigo-management-action.bpmn @@ -66,7 +66,7 @@ Flow_1nuku1o def process = processes.byId(contextScopeId, contextProcessId) -if(awxResponse != null && awxResponse.job != null) { +if(awxResponse != null && awxResponse.job != null) { def jobs = process.getVariable('jobs') jobs = !!jobs ? jobs : [] jobs.add(0, awxResponse.job)