The GitHub Actions job "Tests (AMD)" on 
airflow.git/fix-db-clean-null-start-date has failed.
Run started by GitHub user bileyroy (triggered by potiuk).

Head commit for run:
9ad7c673603b0b1be7367ed3f19fc20ed3356d92 / Biley Roy <[email protected]>
fix(db_cleanup): handle NULL start_date in dag_run cleanup

  When start_date is NULL (e.g. runs that failed or were killed before
  execution began), the WHERE condition start_date < cutoff evaluates
  to NULL and silently skips these rows forever.

  Add --fallback-cleanup-on-null CLI flag that uses
  COALESCE(start_date, created_at) in the WHERE condition, keep_last
  subquery, and JOIN so that NULL start_date rows are cleaned based on
  their created_at timestamp while the most recent run per dag is still
  protected by keep_last.

  closes: #69872

Report URL: https://github.com/apache/airflow/actions/runs/29353268953

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to