mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 14:36:00 -03:30
Fix handling of extra_vars_path parameter. (#25272)
tower-cli process_extra_vars takes a list.
This commit is contained in:
committed by
AlanCoding
parent
49df11d478
commit
7c0554bf7b
@@ -233,7 +233,7 @@ def update_fields(p):
|
||||
|
||||
extra_vars = params.get('extra_vars_path')
|
||||
if extra_vars is not None:
|
||||
params_update['extra_vars'] = '@' + extra_vars
|
||||
params_update['extra_vars'] = ['@' + extra_vars]
|
||||
|
||||
params.update(params_update)
|
||||
return params
|
||||
|
||||
Reference in New Issue
Block a user