Fix rebase bug specific to ad hoc commands

This commit is contained in:
Alan Rominger 2021-07-19 09:43:46 -04:00
parent 13300bdbd4
commit e7be86867d
No known key found for this signature in database
GPG Key ID: C2D7EAAA12B63559

View File

@ -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