-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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 the order that tasks are displayed in Grid view #22731
Comments
We've got this function already, so it might be as simple as using that? Lines 1716 to 1726 in 3849b4e
Narrator: it wasn't. It never is |
i wonder if using topological_sort may also solve #13044 ? |
@eladkal Nope, that's purely an artefact of the chart/graphing libary we are using on the front end as expanding the collapsed TG doesn't request any new data -- it's already there in the |
The order that tasks are displayed in Grid view do not correlate with the order that the tasks would be expected to execute in the DAG. See
example_bash_operator
below:We should update the task_group_to_tree function in views.py to better approximate the order that tasks would be run.
The text was updated successfully, but these errors were encountered: