mirror of
https://github.com/ansible/awx.git
synced 2026-03-16 08:27:29 -02:30
Fix to handle parameters with Boolean values correctly
* Addresses the issue #10057 Signed-off-by: Hideki Saito <saito@fgrep.org>
This commit is contained in:
@@ -751,7 +751,7 @@ def main():
|
||||
'webhook_service',
|
||||
):
|
||||
field_val = module.params.get(field_name)
|
||||
if field_val:
|
||||
if field_val is not None:
|
||||
new_fields[field_name] = field_val
|
||||
|
||||
if 'extra_vars' in new_fields:
|
||||
|
||||
Reference in New Issue
Block a user