ashb commented on code in PR #68568:
URL: https://github.com/apache/airflow/pull/68568#discussion_r3580383093
##########
airflow-core/src/airflow/models/dagrun.py:
##########
@@ -702,7 +736,9 @@ def active_runs_of_dags(
@classmethod
@retry_db_transaction
- def get_running_dag_runs_to_examine(cls, session: Session) ->
ScalarResult[DagRun]:
+ def get_running_dag_runs_to_examine(
+ cls, session: Session, *, eagerly_load_dag_tags: bool
Review Comment:
Session should almost always be a named kwarg here. Does doing
```suggestion
cls, * session: Session, eagerly_load_dag_tags: bool
```
Need any large scale changes to support?
--
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]