Increase infinite loop timeout wait slightly to bandage #81.

This commit is contained in:
Nick Winter 2014-01-06 12:47:50 -08:00
parent f656a4f4cf
commit fa687c4c30

View file

@ -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) ->