mirror of
https://github.com/ansible/awx.git
synced 2026-02-25 06:56:00 -03:30
Fix a bug where listing the unified job fields did not include the
'launch_type' parameter, causing failing unit tests
This commit is contained in:
@@ -198,7 +198,7 @@ class JobTemplate(UnifiedJobTemplate, JobOptions):
|
|||||||
def _get_unified_job_field_names(cls):
|
def _get_unified_job_field_names(cls):
|
||||||
return ['name', 'description', 'job_type', 'inventory', 'project',
|
return ['name', 'description', 'job_type', 'inventory', 'project',
|
||||||
'playbook', 'credential', 'cloud_credential', 'forks',
|
'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']
|
'force_handlers', 'skip_tags', 'start_at_task']
|
||||||
|
|
||||||
def create_job(self, **kwargs):
|
def create_job(self, **kwargs):
|
||||||
|
|||||||
Reference in New Issue
Block a user