Skip to content

Commit

Permalink
fix(launcher): send sigkill on timeout when force killing
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhavesh Kakadiya committed Jun 14, 2016
1 parent ca95553 commit c615c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/launchers/process.js
Expand Up @@ -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
}

Expand Down

0 comments on commit c615c1f

Please sign in to comment.