From e7be86867deee71d5e81d738671cbf767055d4f2 Mon Sep 17 00:00:00 2001 From: Alan Rominger Date: Mon, 19 Jul 2021 09:43:46 -0400 Subject: [PATCH] Fix rebase bug specific to ad hoc commands --- 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 27a3482766..1098fdbfac 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -2848,7 +2848,7 @@ class RunAdHocCommand(BaseTask): return d def build_execution_environment_params(self, instance, private_data_dir): - params = super(RunAdHocCommand, self).build_execution_environment_params(instance) + params = super(RunAdHocCommand, self).build_execution_environment_params(instance, private_data_dir) params['process_isolation'] = False if MODE == 'development' else True return params