What's the easiest way to cancel a flow based on a...
# prefect-community
d
What's the easiest way to cancel a flow based on a condition (like say you have a pipeline that checks for a file and only continues if it's found)?
k
It’s best if you just
raise SKIP
and let the
SKIP
propagate downstream because cancellations are aggressive and dont shut down hardware properly
👍 1