uranusjr commented on code in PR #25594:
URL: https://github.com/apache/airflow/pull/25594#discussion_r941275099


##########
airflow/ti_deps/deps/ready_to_reschedule.py:
##########
@@ -40,7 +40,8 @@ def _get_dep_statuses(self, ti, session, dep_context):
         considered as passed. This dependency fails if the latest reschedule
         request's reschedule date is still in future.
         """
-        if not getattr(ti.task, "reschedule", False):
+        is_mapped = ti.task.is_mapped
+        if not is_mapped and not getattr(ti.task, "reschedule", False):

Review Comment:
   Worth a comment here (and below) to note why we explicitly exclude mapped 
operators this this function.



-- 
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]

Reply via email to