mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Don't hash because Henry is hashist!
This commit is contained in:
parent
c90cc61570
commit
68c428545d
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ module.exports = RedisSharelatex =
|
|||
heartbeatInterval = heartbeatOpts.heartbeat_interval or 1000 #ms
|
||||
reconnectAfter = heartbeatOpts.reconnect_after or 5000 #ms
|
||||
|
||||
id = require("crypto").createHash("md5").update(Math.random().toString()).digest("hex")
|
||||
id = require("crypto").randomBytes(16).toString("hex")
|
||||
heartbeatChannel = "heartbeat-#{id}"
|
||||
lastHeartbeat = Date.now()
|
||||
|
||||
|
|
Loading…
Reference in a new issue