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
Nasty bug with shutil.rmtree spotted by @datamel whilst reviewing #3654.
Python's shutil.rmtree (like most things) does not work reliably on NFS filesystems. Other solutions may be affected by the same underlying issue.
The safest way I can think of handling it would is to be to give NFS a brief window to think about what it's done before taking it seriously and allowing traceback to propagate.
I'm not aware that this is causing issues in Cylc at the moment, but it is a potential bug, just yearning for the chance to surface when you really don't want it to so tagging this against bug?.
See this comment which includes examples of what other projects have done to deal with the NFS menace.
Nasty bug with
shutil.rmtree
spotted by @datamel whilst reviewing #3654.Python's
shutil.rmtree
(like most things) does not work reliably on NFS filesystems. Other solutions may be affected by the same underlying issue.The safest way I can think of handling it would is to be to give NFS a brief window to think about what it's done before taking it seriously and allowing traceback to propagate.
I'm not aware that this is causing issues in Cylc at the moment, but it is a potential bug, just yearning for the chance to surface when you really don't want it to so tagging this against
bug?
.See this comment which includes examples of what other projects have done to deal with the NFS menace.
The text was updated successfully, but these errors were encountered: