Browse Source

Stop killing run-tests and run-ci

msmith-techempower 10 years ago
parent
commit
df5a0c3c0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/Java/grizzly-bm/setup.py

+ 1 - 1
frameworks/Java/grizzly-bm/setup.py

@@ -14,7 +14,7 @@ def stop(logfile, errfile):
   p = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE)
   out, err = p.communicate()
   for line in out.splitlines():
-    if 'grizzly-bm' in line:
+    if 'grizzly-bm' in line and 'run-tests' not in line and 'run-ci' not in line:
       pid = int(line.split(None, 2)[1])
       os.kill(pid, 15)
   return 0