dstandish commented on code in PR #26131:
URL: https://github.com/apache/airflow/pull/26131#discussion_r961823320


##########
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:
   i think exiting here means you don't iterate through outlets to get outlet 
datasets



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