mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 12:24:25 +02:00
Merge pull request #93 from overleaf/spd-econnreset
Handle ECONNRESET in the same way as EPIPE
This commit is contained in:
@@ -141,7 +141,8 @@ if Settings.shutdownDrainTimeWindow?
|
||||
if Settings.errors?.catchUncaughtErrors
|
||||
process.removeAllListeners('uncaughtException')
|
||||
process.on 'uncaughtException', (error) ->
|
||||
if error.code == 'EPIPE'
|
||||
if ['EPIPE', 'ECONNRESET'].includes(error.code)
|
||||
Metrics.inc('disconnected_write', 1, {status: error.code})
|
||||
return logger.warn err: error, 'attempted to write to disconnected client'
|
||||
logger.error err: error, 'uncaught exception'
|
||||
if Settings.errors?.shutdownOnUncaughtError
|
||||
|
||||
Reference in New Issue
Block a user