From c615c1ff9523b7485fc9552b7e8dbad20f044920 Mon Sep 17 00:00:00 2001 From: Bhavesh Kakadiya Date: Fri, 10 Jun 2016 12:00:37 -0700 Subject: [PATCH] fix(launcher): send sigkill on timeout when force killing --- lib/launchers/process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/launchers/process.js b/lib/launchers/process.js index ca3171c34..c25039aa4 100644 --- a/lib/launchers/process.js +++ b/lib/launchers/process.js @@ -113,7 +113,7 @@ var ProcessLauncher = function (spawn, tempDir, timer) { } this._onKillTimeout = function () { - if (self.state !== self.STATE_BEING_KILLED) { + if (self.state !== self.STATE_BEING_KILLED && self.state !== self.STATE_BEING_FORCE_KILLED) { return }