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 write-file-atomic is used by multiple processes (e.g. in worker-farm) it can run into a race condition where the same file is being written/renamed concurrently. On Windows it causes the following error:
Error: EPERM: operation not permitted, rename '...' -> '...'
#22 seems to address this issue for async writes within the same process, but the issue still exists for parallel sync/async writes.