From f9d0c74bbc4dfd56cb6c7f615d6a4410d268c932 Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Fri, 13 May 2016 15:39:08 -0400 Subject: [PATCH] fix supervisord issue * exec spawned python process so we don't have grandparents * increase time until supervisord is killed --- tools/scripts/tower-python | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/tower-python b/tools/scripts/tower-python index 12f6275fd7..3e94c3a59b 100755 --- a/tools/scripts/tower-python +++ b/tools/scripts/tower-python @@ -15,4 +15,4 @@ if [ -f /var/lib/awx/venv/tower/bin/activate ]; then fi # Run the requested Python command, using the interpreter from the path -python "$@" +exec python "$@"