You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A task that is released while still in-flight will stick around in the
in_flight_workers state. This can cause a KeyError when gather_dep goes
to handle this now-missing-task.
The correct thing to do in this case is to just ignore the key,
which is what this commit does.
We could also keep in_flight_workers up-to-date on a release transition.
I'm not sure how valuable this would be apart from passing.
I'm open to either approach. This was the easiest.
Fixesdask#6194
This was found when running
distributed/tests/test_stress.py::test_chaos_rechunk
Story
I'm not surprised that there would be a missing key, however I am surprised that we're not catching this in a more graceful way.
cc @fjetter
The text was updated successfully, but these errors were encountered: