j-y-matsubara commented on a change in pull request #8867: URL: https://github.com/apache/airflow/pull/8867#discussion_r466097105
########## File path: UPDATING.md ########## @@ -62,6 +62,18 @@ More tips can be found in the guide: https://developers.google.com/style/inclusive-documentation --> + + +### Made BaseSensorOperator respect the trigger_rule of downstream tasks + +Previously, BaseSensorOperator with setting soft_fail=True becomes skipped itself +and skips all its downstream tasks unconditionally when it fails. +The point is it does not respect the trigger_rule of downstream tasks when it fails. +In the new behavior, the trigger_rule of downstream tasks are respected. +User can preserve/achieve the original behaviour by setting every downstream task to all_success, +because downstream tasks with trigger_rule all_success (i.e. the default) are skipped +when upstream task is skipped. + Review comment: Thank you for sharing your information with me! I've fixed! :) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
