mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-31 23:03:42 +00:00
ignore ECONNRESET
This commit is contained in:
parent
42d44a7072
commit
67d3ebf4dc
1 changed files with 3 additions and 0 deletions
|
@ -130,6 +130,9 @@ os = require('os')
|
|||
|
||||
server = net.createServer (socket) ->
|
||||
socket.on "error", (err)->
|
||||
if err.code == "ECONNRESET"
|
||||
# this always comes up, we don't know why
|
||||
return
|
||||
logger.err err:err, "error with socket on load check"
|
||||
socket.destroy()
|
||||
|
||||
|
|
Loading…
Reference in a new issue