Romain
02/18/2022, 7:21 AMNoah Holm
02/18/2022, 8:46 AMRomain
02/18/2022, 8:55 AMNoah Holm
02/18/2022, 9:06 AMwith Flow("Using Collections") as flow:
a = a_number()
b = a_number()
s = get_sum([a, b])
to this
with Flow("Using Collections") as flow:
a = a_number()
b = a_number()
a_list = merge_into_list(a, b)
s = get_sum(a_list)
could you be doing something similar to the top code with your merge tasks for example?Romain
02/18/2022, 9:45 AMNoah Holm
02/18/2022, 10:18 AMAnna Geller
Romain
02/18/2022, 10:46 AMFailed
. Right?Anna Geller
Romain
02/18/2022, 10:55 AMAnna Geller
Romain
02/18/2022, 11:12 AMAnna Geller
all_finished
- this way, this task will run even if some of those upstream tasks fails.