mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Don't shut down on uncaught EPIPE
This commit is contained in:
parent
d12e056f08
commit
fbff3fe727
1 changed files with 2 additions and 0 deletions
|
@ -141,6 +141,8 @@ if Settings.shutdownDrainTimeWindow?
|
|||
if Settings.errors?.catchUncaughtErrors
|
||||
process.removeAllListeners('uncaughtException')
|
||||
process.on 'uncaughtException', (error) ->
|
||||
if error.code == 'EPIPE'
|
||||
return logger.warn err: error, 'attempted to write to disconnected client'
|
||||
logger.error err: error, 'uncaught exception'
|
||||
if Settings.errors?.shutdownOnUncaughtError
|
||||
drainAndShutdown('SIGABRT')
|
||||
|
|
Loading…
Reference in a new issue