fix: stop pass milis not seconds into setTimeout

This commit is contained in:
Hayden Faulds 2018-02-20 10:26:24 +00:00
parent 9a73c123b7
commit d750f942de

View file

@ -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}"