mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 21:01:11 +00:00
removed unneeded default function arg preventing from decaffeination
This commit is contained in:
parent
5bf1bacf25
commit
e37c261bb0
2 changed files with 2 additions and 2 deletions
|
@ -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...) ->
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue