uranusjr commented on code in PR #44925:
URL: https://github.com/apache/airflow/pull/44925#discussion_r1900684511
##########
airflow/models/skipmixin.py:
##########
@@ -120,8 +120,11 @@ def skip(
raise ValueError("dag_run is required")
task_ids_list = [d.task_id for d in task_list]
- SkipMixin._set_state_to_skipped(dag_run, task_ids_list, session)
- session.commit()
+
+ # The following could be applied only for non-mapped tasks
Review Comment:
This should include the reasoning why doing this with an expanded task is
wrong.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]