shahar1 commented on code in PR #46584: URL: https://github.com/apache/airflow/pull/46584#discussion_r1947935668
########## providers/common/compat/src/airflow/providers/common/compat/standard/short_circuit.py: ########## @@ -0,0 +1,36 @@ +import logging + + +def get_tasks_to_skip(log, condition, task, downstream_task_ids, ignore_downstream_trigger_rules: bool): + """ + Compatibility function for short-circuiting tasks. + In Airflow v2, it will be utilized by the ShortCircuitOperator. + In Airflow v3+, it will be utilized by the task_runner. + """ Review Comment: Important to preserve backward compatiblity -- 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. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org