| The following parameterizedCron (entry far below) only runs the first item in the list. Expected result is two randomised job runs each with its own parameter value. i.e. Run job with param 1 anytime between 7:10-7:30am Run job again with param 2 anytime between 7:10-7:30am Example parameterizedCron parameterizedCron(''' H(10-30) 7 * % DevOpsEnv=nonprod_vpc H(10-30) 7 * % DevOpsEnv=prod_vpc ''') Seems H(10-30) entry is treated as a duplicate and ignored? |