mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fix: stop pass milis not seconds into setTimeout
This commit is contained in:
parent
9a73c123b7
commit
d750f942de
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ module.exports = LockManager =
|
||||||
metrics.inc "lock.#{namespace}.exceeded_lock_timeout"
|
metrics.inc "lock.#{namespace}.exceeded_lock_timeout"
|
||||||
logger.log "exceeded lock timeout", { namespace, id, slowExecutionError }
|
logger.log "exceeded lock timeout", { namespace, id, slowExecutionError }
|
||||||
|
|
||||||
setTimeout countIfExceededLockTimeout, LockManager.REDIS_LOCK_EXPIRY
|
setTimeout countIfExceededLockTimeout, LockManager.REDIS_LOCK_EXPIRY * 1000
|
||||||
|
|
||||||
timer = new metrics.Timer("lock.#{namespace}")
|
timer = new metrics.Timer("lock.#{namespace}")
|
||||||
key = "lock:web:#{namespace}:#{id}"
|
key = "lock:web:#{namespace}:#{id}"
|
||||||
|
|
Loading…
Reference in a new issue