In prefect 1.X what is the best way to execute a t...
# prefect-community
j
In prefect 1.X what is the best way to execute a task only if the previous data retrieval task returned results? Like call an email task only if there is data to email.
k
I think I would raise the SKIP signal from the upstream task to skip downstream tasks. You could use conditional logic or you can also look at triggers.
j
I will check those out thank you