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
Rollup merge of #149004 - clubby789:compiletest-delete-safe, r=jieyouxu
compiletest: Avoid race condition in file deletion
Fixes#149003
There is a TOCTOU when multiple threads attempt to delete the same file. Instead of pre-checking if the file exists, we can simply ignore `NotFound` errors.
0 commit comments