ephraimbuddy commented on a change in pull request #19367:
URL: https://github.com/apache/airflow/pull/19367#discussion_r747386557
##########
File path: airflow/models/dag.py
##########
@@ -2880,11 +2884,14 @@ def dags_needing_dagruns(cls, session: Session):
# TODO[HA]: Bake this query, it is run _A lot_
# We limit so that _one_ scheduler doesn't try to do all the creation
# of dag runs
+
query = (
session.query(cls)
.filter(
+ cls.max_active_runs != None, # noqa
Review comment:
Yes. Will remove it
--
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]