mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 06:09:20 +00:00
fixed renaming missing callback (#28)
This commit is contained in:
parent
46d0cf9c4b
commit
ba642b9807
1 changed files with 7 additions and 2 deletions
|
@ -39,8 +39,13 @@ setInterval(function() {
|
|||
logger.log({ err }, 'error writing cache file')
|
||||
return fs.unlink(cacheFsPathTmp)
|
||||
} else {
|
||||
fs.rename(cacheFsPathTmp, cacheFsPath)
|
||||
return logger.log({ len: dump.length, cacheFsPath }, 'wrote cache file')
|
||||
fs.rename(cacheFsPathTmp, cacheFsPath, err => {
|
||||
if (err) {
|
||||
logger.error({ err }, 'error renaming cache file')
|
||||
} else {
|
||||
logger.log({ len: dump.length, cacheFsPath }, 'wrote cache file')
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}, 30 * OneMinute)
|
||||
|
|
Loading…
Reference in a new issue