fix: websocket is not keep alive (#2131)

This commit is contained in:
Meier Lukas
2025-01-26 21:26:21 +01:00
committed by GitHub
parent dd2ca13004
commit af1f8eaf76

View File

@@ -39,6 +39,14 @@ const handler = applyWSSHandler({
});
}
},
// Enable heartbeat messages to keep connection open (disabled by default)
keepAlive: {
enabled: true,
// server ping message interval in milliseconds
pingMs: 30000,
// connection is terminated if pong message is not received in this many milliseconds
pongWaitMs: 5000,
},
});
wss.on("connection", (websocket, incomingMessage) => {