Skip to content

Commit c59fd2c

Browse files
authored
Immediate: this needs to stop flooding the disk IO usage
1 parent 6a57fa3 commit c59fd2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server-src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ function insertPropsToString(txt, props) {
10691069
var serverAvailable = false;
10701070
async function checkServerLoop() {
10711071
serverAvailable = await checkServer();
1072-
setTimeout(checkServerLoop, 3000);
1072+
setTimeout(checkServerLoop, 1000*60*2); //every two minutes
10731073
}
10741074

10751075
function getCookieFromRequest(req) {

0 commit comments

Comments
 (0)