mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-16 00:19:50 -05:00
Increase infinite loop timeout wait slightly to bandage #81.
This commit is contained in:
parent
f656a4f4cf
commit
fa687c4c30
1 changed files with 2 additions and 1 deletions
|
@ -150,7 +150,8 @@ class Angel
|
|||
@lastID = (if @lastID? then @lastID + 1 else Math.floor(@ids.length * Math.random())) % @ids.length
|
||||
@ids[@lastID]
|
||||
|
||||
infiniteLoopIntervalDuration: 5000 # check this often (must be more than the others added)
|
||||
# https://github.com/codecombat/codecombat/issues/81 -- TODO: we need to wait for worker initialization first
|
||||
infiniteLoopIntervalDuration: 15000 # check this often (must be more than the others added)
|
||||
infiniteLoopTimeoutDuration: 1500 # wait this long when we check
|
||||
abortTimeoutDuration: 500 # give in-process or dying workers this long to give up
|
||||
constructor: (@god) ->
|
||||
|
|
Loading…
Reference in a new issue