ephraimbuddy commented on code in PR #25594:
URL: https://github.com/apache/airflow/pull/25594#discussion_r940627184
##########
airflow/ti_deps/deps/ready_to_reschedule.py:
##########
@@ -62,6 +63,9 @@ def _get_dep_statuses(self, ti, session, dep_context):
.first()
)
if not task_reschedule:
+ if is_mapped:
+ yield self._passing_status(reason="The task is mapped and not
in reschedule mode")
+ return
Review Comment:
Handling the logic here is the simplest solution among many others I
considered.
`MappedOperator` doesn't serialize sensor attributes.
--
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]