removed unneeded default function arg preventing from decaffeination

This commit is contained in:
mserranom 2020-02-19 12:06:09 +01:00
parent 5bf1bacf25
commit e37c261bb0
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ module.exports = LockManager =
logger.error {key:key, lock: existingLock}, "tried to release lock that has gone"
callback()
runWithLock: (key, runner = ( (releaseLock = (error) ->) -> ), callback = ( (error) -> )) ->
runWithLock: (key, runner, callback = ( (error) -> )) ->
LockManager.getLock key, (error, lockValue) ->
return callback(error) if error?
runner (error1, args...) ->

View file

@ -9,7 +9,7 @@ module.exports = LockManager =
MAX_LOCK_WAIT_TIME: 15000 # 10s maximum time to spend trying to get the lock
LOCK_STALE: 5*60*1000 # 5 mins time until lock auto expires
runWithLock: (path, runner = ((releaseLock = (error) ->) ->), callback = ((error) ->)) ->
runWithLock: (path, runner, callback = ((error) ->)) ->
lockOpts =
wait: @MAX_LOCK_WAIT_TIME
pollPeriod: @LOCK_TEST_INTERVAL