1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

Fix psutil usage on el6 for job cancel

psutil will fail to import on el6 due to not being able to access a
pseudo terminal.  This issues a SIGKILL to the proot process in order to
force the stop
This commit is contained in:
Matthew Jones 2015-08-05 11:20:48 -04:00
parent 14df41b47b
commit efcff9b5f7

View File

@ -23,7 +23,10 @@ import uuid
from distutils.version import LooseVersion as Version
import dateutil.parser
import yaml
import psutil
try:
import psutil
except:
psutil = None
# Pexpect
import pexpect
@ -434,13 +437,16 @@ class BaseTask(Task):
if instance.cancel_flag:
try:
if settings.AWX_PROOT_ENABLED:
main_proc = psutil.Process(pid=child.pid)
if hasattr(main_proc, "children"):
child_procs = main_proc.children(recursive=False)
if not psutil:
os.kill(child.pid, signal.SIGKILL)
else:
child_procs = main_proc.get_children(recursive=False)
for child_proc in child_procs:
os.kill(child_proc.pid, signal.SIGTERM)
main_proc = psutil.Process(pid=child.pid)
if hasattr(main_proc, "children"):
child_procs = main_proc.children(recursive=False)
else:
child_procs = main_proc.get_children(recursive=False)
for child_proc in child_procs:
os.kill(child_proc.pid, signal.SIGTERM)
else:
os.kill(child.pid, signal.SIGTERM)
time.sleep(3)