Commit 9fac3b0d by Michael DeHaan

Merge pull request #8187 from willangenent/devel

Fix for issue #8152: Missing auth headers and a faulty JSON decode
parents d4548fdd 0e33db83
......@@ -122,9 +122,9 @@ class netscaler(object):
'Content-Type' : 'application/x-www-form-urlencoded',
}
response, info = fetch_url(self.module, request_url, data=data_json)
response, info = fetch_url(self.module, request_url, data=data_json, headers=headers)
return json.load(response.read())
return json.load(response)
def prepare_request(self, action):
resp = self.http_request(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment