increase threshold for kicking out ws again

This commit is contained in:
HF 2022-07-04 01:07:35 +02:00
parent 09ba826b33
commit e5f604c327

View File

@ -337,7 +337,7 @@ class SocketServer {
}
checkHealth() {
const ts = Date.now() - 60 * 1000;
const ts = Date.now() - 120 * 1000;
const promises = [];
this.wss.clients.forEach((ws) => {
promises.push(new Promise((resolve) => {