From 2329079326f97fee4496d171068df3833fe0c574 Mon Sep 17 00:00:00 2001 From: chris meyers Date: Wed, 27 Mar 2019 11:08:41 -0400 Subject: [PATCH] runner expects process isolation flags in settings * Towards the goal of converging the iso code path w/ the non-iso code path. More process isolation control flags into settings. --- awx/main/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 4f1bc7c3f5..31077f56f6 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -1162,8 +1162,8 @@ class BaseTask(object): 'idle_timeout': self.get_idle_timeout() or "", 'job_timeout': self.get_instance_timeout(self.instance), 'pexpect_timeout': getattr(settings, 'PEXPECT_TIMEOUT', 5), + **process_isolation_params, }, - **process_isolation_params, } if isinstance(self.instance, AdHocCommand):