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
When two processes run in parallel, valious asdf-related calls (e.g. system-relative-pathname in my case) simultaneously tries to delete system-index.txt.bak which fail because another process has already deleted it.
Candidate solutions:
Take some form of file lock on system-index.txt
Ignore the error and just ensure the backup file is deleted
Name the backup file with a hash value to minimize the collision
The text was updated successfully, but these errors were encountered:
When two processes run in parallel, valious asdf-related calls (e.g. system-relative-pathname in my case) simultaneously tries to delete system-index.txt.bak which fail because another process has already deleted it.
Candidate solutions:
The text was updated successfully, but these errors were encountered: