ashb commented on code in PR #26131:
URL: https://github.com/apache/airflow/pull/26131#discussion_r961827166
##########
airflow/models/dag.py:
##########
@@ -2680,7 +2680,9 @@ class InletRef(NamedTuple):
outlet_datasets: Dict[Dataset, None] = {}
input_datasets: Dict[Dataset, None] = {}
for dag in dags:
- for dataset in dag.dataset_triggers:
+ if not isinstance(dag.timetable, DatasetTriggeredTimetable):
+ continue
Review Comment:
Whoops yep.
--
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]