Hi, How could I prevent the downstream mapped task...
# ask-community
f
Hi, How could I prevent the downstream mapped task from skipping when an upstream mapped task fails for some of the inputs? It’s mentioned here:
Copy code
If the output of one mapped task is used as input to another mapped task, any failed or skipped task will make the subsequent task fail/skip by default.
How can I change this default behaviour so that the downstream mapped task runs even if the upstream mapped one fails?
k
Hi @Farid, you can set a trigger with always_run so the task will always run. The input to the task will be the exception
1