D. Ferruzzi
D. Ferruzzi
Hm, I wonder if that's still the desired behavior. I can do an easy deadline-specific workaround by adding a check before the `if dr.state in State.finished_dr_states: ` but I wonder...
Reading through the [original Issue](https://github.com/apache/airflow/issues/30124) that spawned that change, the request was that we should not change the start_date on a clear which I agree with, but I feel like...
Started an email thread on the dev list to get community thoughts. My proposal is that we should always kick the run back to the queue and update the queued_at...
I can have a look at this some time next week if @keeed doesn't?
The plan for Deadlines is to add a simple check in the scheduler loop, essentially (obviously pseudocode): `if (select min(deadline) from DeadlinesTable) < utcnow(): handle_deadline_misses()` My intention was for the...
@howardyoo - Can you have a look when you get time, this is something we discussed a while back.
It's a good start. - We need to use get_name in all the other methods as well (`decr()`, `gauge()`, etc) which you already said. - Please add unit tests to...