From 881da2b3f1aaf4dfaf7d3384d8ee188e9c6d512e Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Mon, 19 Sep 2016 11:42:23 -0400 Subject: Fix call to `axapi_call_v3()` (#17637) Closes #17584 --- lib/ansible/module_utils/a10.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ansible/module_utils/a10.py b/lib/ansible/module_utils/a10.py index 737919b463..82492a8595 100644 --- a/lib/ansible/module_utils/a10.py +++ b/lib/ansible/module_utils/a10.py @@ -91,7 +91,7 @@ def axapi_authenticate(module, base_url, username, password): def axapi_authenticate_v3(module, base_url, username, password): url = base_url auth_payload = {"credentials": {"username": username, "password": password}} - result = axapi_call_v3(module, url, post=auth_payload) + result = axapi_call_v3(module, url, method='POST', body=auth_payload) if axapi_failure(result): return module.fail_json(msg=result['response']['err']['msg']) signature = result['authresponse']['signature'] @@ -141,4 +141,3 @@ def axapi_get_port_protocol(protocol): def axapi_get_vport_protocol(protocol): return AXAPI_VPORT_PROTOCOLS.get(protocol.lower(), None) - -- cgit v1.2.1