ferruzzi commented on code in PR #61372:
URL: https://github.com/apache/airflow/pull/61372#discussion_r2776536381
##########
airflow-core/src/airflow/models/taskinstance.py:
##########
@@ -274,6 +318,8 @@ def clear_task_instances(
dr.clear_number += 1
dr.queued_at = timezone.utcnow()
+ _recalculate_dagrun_queued_at_deadlines(dr, dr.queued_at, session)
Review Comment:
Nope, this is where it happens. If you trace through the code from when the
user clicks the "clear run" button in the UI this is where it ends up, and it's
the only place in the code where `dr.queued_at ` is updated. I get the
confusion, given the method names, but I'm pretty sure I got this int he right
place.
--
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]