Hi everyone! I’m experiencing something weird in P...
# prefect-ui
g
Hi everyone! I’m experiencing something weird in Prefect 3. I’ve noticed when a task fails the flow does not. To make the flow failing I need to check the state of all flow tasks and make the flow fails if any task is not in completed state. Is it the correct behaviour or it’s just me missing something?
d
This is expected, to ensure that your flow fails if any task fails, you can return the state or results of all your tasks from the flow function
g
Thank you @Dylan for confirming!