diff --git a/CHANGELOG.md b/CHANGELOG.md index 26ac2481..ebb0a3f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ All notable changes (from 2.13.0 onwards) will be documented in this file. -### UNRELEASED +### v2.13.2 * feat: add incrementBy util to prometheus-agent * feat(core): add event callback and dispatch metrics +* fix: another edge case where subprocesses fail to recover ### v2.13.1 diff --git a/lib/main/process-wrapper.js b/lib/main/process-wrapper.js index f68dda29..adde7cc6 100644 --- a/lib/main/process-wrapper.js +++ b/lib/main/process-wrapper.js @@ -125,7 +125,5 @@ module.exports = class ProcessWrapper extends EventEmitter { }); this.runningState = "STOPPED"; - - this.removeAllListeners('exit'); } }