mobuchowski commented on code in PR #27113:
URL: https://github.com/apache/airflow/pull/27113#discussion_r1029553731
##########
airflow/jobs/scheduler_job.py:
##########
@@ -798,7 +798,7 @@ def _update_dag_run_state_for_paused_dags(self, session:
Session = NEW_SESSION)
)
for dag_run in dag_runs:
dag_run.dag = dag
- _, callback_to_run =
dag_run.update_state(execute_callbacks=False)
+ dag_run, callback_to_run =
dag_run.update_state(execute_callbacks=False)
Review Comment:
I've used it before, removed in the latest PR version and this leftover
stayed. Fixed.
BTW, I think it's not detected by static checks because it's used in the
same block before anyway.
--
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]