From 82f20259441c68bb95f69ecab799063bd9e4d67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 16 Jan 2018 14:27:44 -0500 Subject: [PATCH] disable timeout on post install route --- install/web.js | 1 + 1 file changed, 1 insertion(+) diff --git a/install/web.js b/install/web.js index d63db06ca3..8bfd416785 100644 --- a/install/web.js +++ b/install/web.js @@ -104,6 +104,7 @@ function welcome(req, res) { } function install(req, res) { + req.setTimeout(0); var setupEnvVars = _.assign({}, process.env); for (var i in req.body) { if (req.body.hasOwnProperty(i) && !process.env.hasOwnProperty(i)) {