From 225a12fcd2848ce91bbf103850ffa340a1a985b1 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Fri, 17 Oct 2014 10:14:23 +0100 Subject: [PATCH] up timeout to 6 mins --- app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.coffee b/app.coffee index 1061760..decbf43 100644 --- a/app.coffee +++ b/app.coffee @@ -21,7 +21,7 @@ app.use Metrics.http.monitor(logger) # Compile requests can take longer than the default two # minutes (including file download time), so bump up the # timeout a bit. -TIMEOUT = threeMinutes = 3 * 60 * 1000 +TIMEOUT = 6 * 60 * 1000 app.use (req, res, next) -> req.setTimeout TIMEOUT res.setTimeout TIMEOUT