From: Jason Woofenden Date: Thu, 19 Jan 2012 10:18:44 +0000 (-0500) Subject: set game timeout to 3 hours X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-cgt.git;a=commitdiff_plain;h=6dafce4f87485fbc4ba2c06de1016ae5ba7b9bd7 set game timeout to 3 hours --- diff --git a/server.coffee b/server.coffee index f0ebddf..44084e8 100644 --- a/server.coffee +++ b/server.coffee @@ -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