Repository: cloudstack-cloudmonkey Updated Branches: refs/heads/master cbebdb92c -> aab83711b
requester: Fix typo from 61901f20 'apiKey' should be sent Signed-off-by: Rohit Yadav <bhais...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/commit/aab83711 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/tree/aab83711 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/diff/aab83711 Branch: refs/heads/master Commit: aab83711becda6c5af3f6a2a239c579a18b00bd5 Parents: cbebdb9 Author: Rohit Yadav <bhais...@apache.org> Authored: Tue May 20 08:28:07 2014 +0530 Committer: Rohit Yadav <bhais...@apache.org> Committed: Tue May 20 08:28:07 2014 +0530 ---------------------------------------------------------------------- cloudmonkey/requester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/blob/aab83711/cloudmonkey/requester.py ---------------------------------------------------------------------- diff --git a/cloudmonkey/requester.py b/cloudmonkey/requester.py index 0a9ac0c..8e3a352 100644 --- a/cloudmonkey/requester.py +++ b/cloudmonkey/requester.py @@ -153,7 +153,7 @@ def make_request(command, args, logger, host, port, return make_request_with_password(command, args, logger, url, credentials) - args['apikey'] = credentials['apikey'] + args['apiKey'] = credentials['apikey'] secretkey = credentials['secretkey'] request = zip(args.keys(), args.values()) request.sort(key=lambda x: x[0].lower())