MCPcopy Create free account
hub / github.com/EvoMap/evolver / _isRetryableFsLockError

Function _isRetryableFsLockError

src/forceUpdate.js:216–220  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

214}
215
216function _isRetryableFsLockError(e) {
217 var code = e && e.code;
218 return code === 'EPERM' || code === 'EBUSY' || code === 'EACCES' ||
219 code === 'ENOTEMPTY' || code === 'EMFILE' || code === 'ENFILE';
220}
221
222function _waitForFsLockRetry() {
223 var until = Date.now() + 200;

Callers 1

_retryFsLockOperationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected