mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 10:15:17 -04:00
Reduce realtime timeout and heartbeat interval to handle stale clients quicker
This commit is contained in:
parent
1df5b4ce49
commit
da7b6a340d
2 changed files with 3 additions and 3 deletions
|
@ -49,8 +49,8 @@ var sessionlife = config.sessionlife || 14 * 24 * 60 * 60 * 1000; //14 days
|
|||
var staticcachetime = config.staticcachetime || 1 * 24 * 60 * 60 * 1000; // 1 day
|
||||
|
||||
// socket.io
|
||||
var heartbeatinterval = config.heartbeatinterval || 5000;
|
||||
var heartbeattimeout = config.heartbeattimeout || 10000;
|
||||
var heartbeatinterval = config.heartbeatinterval || 1000;
|
||||
var heartbeattimeout = config.heartbeattimeout || 5000;
|
||||
|
||||
// document
|
||||
var documentmaxlength = config.documentmaxlength || 100000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue