potiuk commented on a change in pull request #8232: Simplify
DAG.set_dag_runs_state method
URL: https://github.com/apache/airflow/pull/8232#discussion_r406358379
##########
File path: airflow/models/dag.py
##########
@@ -912,12 +912,7 @@ def set_dag_runs_state(
query = query.filter(DagRun.execution_date >= start_date)
if end_date:
query = query.filter(DagRun.execution_date <= end_date)
- drs = query.all()
-
- dirty_ids = []
- for dr in drs:
- dr.state = state
- dirty_ids.append(dr.dag_id)
Review comment:
I wonder why we needed that dirty_ids list. Does not see to be used :).
----------------------------------------------------------------
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]
With regards,
Apache Git Services