From 91a1d8f761be6818a91b8d831725e5ab1b8d2b16 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 1 Dec 2014 10:23:08 -0500 Subject: [PATCH] Fix a bug where listing the unified job fields did not include the 'launch_type' parameter, causing failing unit tests --- awx/main/models/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/models/jobs.py b/awx/main/models/jobs.py index e70b3d9c2f..32361f64a4 100644 --- a/awx/main/models/jobs.py +++ b/awx/main/models/jobs.py @@ -198,7 +198,7 @@ class JobTemplate(UnifiedJobTemplate, JobOptions): def _get_unified_job_field_names(cls): return ['name', 'description', 'job_type', 'inventory', 'project', 'playbook', 'credential', 'cloud_credential', 'forks', - 'limit', 'verbosity', 'extra_vars', 'job_tags', + 'limit', 'verbosity', 'extra_vars', 'job_tags', 'launch_type', 'force_handlers', 'skip_tags', 'start_at_task'] def create_job(self, **kwargs):