ashb commented on a change in pull request #16089:
URL: https://github.com/apache/airflow/pull/16089#discussion_r649913682
##########
File path: airflow/jobs/backfill_job.py
##########
@@ -689,6 +688,9 @@ def tabulate_tis_set(set_tis: Set[TaskInstance]) -> str:
return err
+ def _get_dag_with_subdags(self):
+ return [self.dag] + self.dag.subdags
+
Review comment:
YAGNI is my general rule -- keep the change as small as sensible for
now, if we need it in the future then we do it then.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]