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
[ML] Fix race condition between job opening and feature reset
There was a point during the job opening sequence where performing
a feature reset could hang.
This happened when the kill request issued by feature reset was
executed after the job's persistent task was assigned but before
the job's native process was started. The persistent task was
incorrectly left running in this situation, yet the job opening
sequence was aborted which meant the subsequent close request
issued by feature reset would wait for a very long time for the
persistent task to disappear.
The fix is to make the kill process request cancel the persistent
task consistently based on its request parameters and not on the
current state of the task.
Fixeselastic#74141
0 commit comments