From af6653dfeb87d318b30241eb1cbb8c76e0ccbb50 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 13 Nov 2018 10:38:15 -0800 Subject: [PATCH] do not timeout when checking for updates --- src/routes/cloudron.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/routes/cloudron.js b/src/routes/cloudron.js index 3af69ef43..44e452e28 100644 --- a/src/routes/cloudron.js +++ b/src/routes/cloudron.js @@ -76,6 +76,9 @@ function getUpdateInfo(req, res, next) { } function checkForUpdates(req, res, next) { + // it can take a while sometimes to get all the app updates one by one + req.clearTimeout(); + async.series([ updateChecker.checkAppUpdates, updateChecker.checkBoxUpdates