From cbc8b648548bba72d60fec0d0fa47342f7a00768 Mon Sep 17 00:00:00 2001 From: Lauren Budorick Date: Thu, 31 Mar 2016 13:27:29 -0700 Subject: [PATCH] unbreak the zombiekilling --- features/support/launch_classes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/launch_classes.js b/features/support/launch_classes.js index 6ecb1eedb..c50437d49 100644 --- a/features/support/launch_classes.js +++ b/features/support/launch_classes.js @@ -38,7 +38,7 @@ var OSRMBaseLoader = class { } osrmDown (callback) { - if (this.scope.pid && this.child && !this.child.exitCode) { + if (this.scope.pid) { process.kill(this.scope.pid, this.scope.TERMSIGNAL); this.waitForShutdown(callback); this.scope.pid = null;