Don't shut down on uncaught EPIPE

This commit is contained in:
Simon Detheridge 2020-02-04 12:56:43 +00:00
parent d12e056f08
commit fbff3fe727

View file

@ -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')