The GitHub Actions job "Tests (AMD)" on 
airflow.git/feature/52439-bulk-dag-runs-actions has failed.
Run started by GitHub user pierrejeambrun (triggered by pierrejeambrun).

Head commit for run:
ae2c811b2039c9e8f0563c6bea5e7cec2c02d823 / pierrejeambrun 
<[email protected]>
Invalidate dependent queries after bulk delete Dag Run

Bulk delete only invalidated the top-level dag-runs and task-instances
lists. Two more cache sets stay stale otherwise:

- Per-attempt TI caches (log / extra links / try details), keyed by
  TI identity. When the user navigates back to a TI try detail via
  the browser back button after deleting its run, react-query serves
  the cached log instead of letting the request hit and return 404.

- The grid view query set for each affected Dag — the grid renders
  one bar per Dag Run, so bulk delete literally removes bars.

The per-attempt set mirrors the addition ``useBulkTaskInstances``
already gained in #67212. The grid invalidation is specific to this
hook because deleting Dag Runs (unlike deleting TIs) changes what the
grid bars themselves represent.

The affected ``dag_id`` set is captured in ``bulkAction`` from the
request body and read in ``onSuccess``, same lifecycle as
``useBulkClearTaskInstances``'s ``byDagRun`` grouping.

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

With regards,
GitHub Actions via GitBox


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

Reply via email to