Pedro Machado
06/01/2023, 10:57 PMexit(0) but Prefect sees that as a crash. What is the recommended approach?
I am doing something like this:
@flow
def my_flow():
if not condition:
run_task()
exit(0)
do_other_stuff()Pedro Machado
06/01/2023, 10:59 PMreturn instead of exit(0)Nate
06/01/2023, 11:00 PM