mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #193 from overleaf/jpa-swallow-write-after-end
[app] ignore error from writing to disconnected long-polling client
This commit is contained in:
commit
65eed4138e
1 changed files with 7 additions and 3 deletions
|
@ -220,9 +220,13 @@ if (Settings.shutdownDrainTimeWindow) {
|
||||||
process.removeAllListeners('uncaughtException')
|
process.removeAllListeners('uncaughtException')
|
||||||
process.on('uncaughtException', function (error) {
|
process.on('uncaughtException', function (error) {
|
||||||
if (
|
if (
|
||||||
['ETIMEDOUT', 'EHOSTUNREACH', 'EPIPE', 'ECONNRESET'].includes(
|
[
|
||||||
error.code
|
'ETIMEDOUT',
|
||||||
)
|
'EHOSTUNREACH',
|
||||||
|
'EPIPE',
|
||||||
|
'ECONNRESET',
|
||||||
|
'ERR_STREAM_WRITE_AFTER_END'
|
||||||
|
].includes(error.code)
|
||||||
) {
|
) {
|
||||||
Metrics.inc('disconnected_write', 1, { status: error.code })
|
Metrics.inc('disconnected_write', 1, { status: error.code })
|
||||||
return logger.warn(
|
return logger.warn(
|
||||||
|
|
Loading…
Reference in a new issue