change to 10seconds

This commit is contained in:
Ashley 2023-10-16 15:57:51 +00:00
parent da4e2dc730
commit e94c83c240

View file

@ -23,12 +23,14 @@ function init(app, config, rendertemplate) {
initlog("wait a few mins... pt on timeout rn");
app.get("/*", function (req, res, next) {
if (didstart) return next();
return rendertemplate(res, req, "timeout.ejs");
});
setTimeout(function () {
didstart = true;
@ -81,13 +83,13 @@ function init(app, config, rendertemplate) {
);
}
})();
}, 1580000); /* setInterval */
}, 30000);
}, 99999); /* setInterval */
}, 10000);
} catch (err) {
initlog("[FAILED] Load pages \n" + err);
console.error(err);
}
}, 30000);
}, 10000);
}
module.exports = {