diff --git a/services/real-time/app.coffee b/services/real-time/app.coffee index 1aeaec4718..b27e2dd0f9 100644 --- a/services/real-time/app.coffee +++ b/services/real-time/app.coffee @@ -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') return logger.warn err: error, 'attempted to write to disconnected client' logger.error err: error, 'uncaught exception' if Settings.errors?.shutdownOnUncaughtError