Subhajit Roy
04/15/2022, 4:42 AMfrom prefect.engine.signals import SKIP
........
........
raise SKIP('Skipping all downstream dependencies.')
With this all the following tasks are being skipped and was expecting the flow state will be skipped
. Though the following tasks are being skipped but at the end the flow becomes successful
.
I have two questions around :
1. Is this something expected?
2. If this is expected, whats the remedy . Do I need to explicitly use a state handler on top of it to make the flow skipped
eventuallyKevin Kho
04/15/2022, 4:43 AMSubhajit Roy
04/15/2022, 4:53 AMKevin Kho
04/15/2022, 4:57 AMSubhajit Roy
04/15/2022, 5:01 AMKevin Kho
04/15/2022, 5:08 AMSubhajit Roy
04/15/2022, 5:11 AMKevin Kho
04/15/2022, 5:21 AMSubhajit Roy
04/15/2022, 5:22 AMKevin Kho
04/15/2022, 5:23 AMreturn Skipped
in the state handler. How are you planning to do it?Subhajit Roy
04/15/2022, 5:26 AMKevin Kho
04/15/2022, 5:31 AMSubhajit Roy
04/15/2022, 5:33 AM