Merge pull request #92 from overleaf/spd-no-fatal-epipe

Don't shut down on uncaught EPIPE
This commit is contained in:
Simon Detheridge 2020-02-04 13:17:54 +00:00 committed by GitHub
commit 3e1cffb8a9

View file

@ -141,6 +141,8 @@ if Settings.shutdownDrainTimeWindow?
if Settings.errors?.catchUncaughtErrors if Settings.errors?.catchUncaughtErrors
process.removeAllListeners('uncaughtException') process.removeAllListeners('uncaughtException')
process.on 'uncaughtException', (error) -> 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' logger.error err: error, 'uncaught exception'
if Settings.errors?.shutdownOnUncaughtError if Settings.errors?.shutdownOnUncaughtError
drainAndShutdown('SIGABRT') drainAndShutdown('SIGABRT')