ephraimbuddy commented on code in PR #25788:
URL: https://github.com/apache/airflow/pull/25788#discussion_r949873532
##########
airflow/models/dagrun.py:
##########
@@ -729,6 +726,10 @@ def _get_ready_tis(
additional_tis.extend(expanded_tis[1:])
expansion_happened = True
if schedulable.state in SCHEDULEABLE_STATES:
+ if schedulable.task.is_mapped:
+ task = cast("MappedOperator", schedulable.task)
Review Comment:
Well, no much reason, it just gave me a clear head to think about what was
going on, I felt it was better there after because of the cache on
`task.run_time_mapped_ti_count` but I'm returning it back to dagrun.
--
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]