JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
set game timeout to 3 hours
authorJason Woofenden <jason@jasonwoof.com>
Thu, 19 Jan 2012 10:18:44 +0000 (05:18 -0500)
committerJason Woofenden <jason@jasonwoof.com>
Thu, 19 Jan 2012 10:18:44 +0000 (05:18 -0500)
server.coffee

index f0ebddf..44084e8 100644 (file)
@@ -26,7 +26,7 @@ model = require './common.coffee'
 
 games = {}
 max_concurrent_games = 50
-max_game_idle = 2 * 60 * 60 * 1000 # two hours (in miliseconds)
+max_game_idle = 3 * 60 * 60 * 1000 # three hours (in miliseconds)
 
 # timeout function with args in convenient order
 timeout = (ms, func) -> setTimeout func, ms