Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix flaky order of returned dag runs #24405

Merged
merged 1 commit into from
Jun 13, 2022

Commits on Jun 12, 2022

  1. Fix flaky order of returned dag runs

    There was no ordering on a query returning dag_runs when it comes
    to grid view. This caused flaky tests but also it would have
    caused problems with random reordering of reported dagruns in the
    UI (it seems).
    
    This change adds stable ordering on returned Dag Runs:
    
    * by dag_run_id (ascending) asc
    
    No need to filter by map_index as there will be always max one
    returned TI from each dag run
    potiuk committed Jun 12, 2022
    Configuration menu
    Copy the full SHA
    57ca704 View commit details
    Browse the repository at this point in the history