Sunjay
11/08/2022, 4:13 PMTaylor Curran
11/08/2022, 4:45 PMJeff Hale
11/08/2022, 6:41 PMSunjay
11/09/2022, 8:56 AMif conditions == 'Foo":
a =task1()
else:
"set task1() state to success"
b= task2() # task 2 wait for the completed state of task1
So this is what I want to achieve in essence. I just wanted to know how to set the task1 state to completed as it can be skipped in case it doesnt meet a certain condition but the downstream job depends on the success state of the task1 using wait_for parameter.