summaryrefslogtreecommitdiff
path: root/lib/ansible/galaxy/api.py
diff options
context:
space:
mode:
authorAlexander Saprykin <cutwatercore@gmail.com>2018-07-02 18:37:40 +0200
committerChris Houseknecht <chousekn@redhat.com>2018-07-02 12:37:40 -0400
commit1eea5674badec60646a5d8589e73494beba6cd31 (patch)
treeac94b2e9a356cce7bbeeb561dc6ccded8c798005 /lib/ansible/galaxy/api.py
parentd497eba196fb2fe4d335cebda1f5085d935d15e6 (diff)
downloadansible-1eea5674badec60646a5d8589e73494beba6cd31.tar.gz
Fix galaxy client executing queries with invalid http method (#42201)
Fixes: ansible/galaxy#796
Diffstat (limited to 'lib/ansible/galaxy/api.py')
-rw-r--r--lib/ansible/galaxy/api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/galaxy/api.py b/lib/ansible/galaxy/api.py
index c6260e3afb..15251b61b3 100644
--- a/lib/ansible/galaxy/api.py
+++ b/lib/ansible/galaxy/api.py
@@ -152,7 +152,7 @@ class GalaxyAPI(object):
args['alternate_role_name'] = role_name
elif github_repo.startswith('ansible-role'):
args['alternate_role_name'] = github_repo[len('ansible-role') + 1:]
- data = self.__call_galaxy(url, args=urlencode(args))
+ data = self.__call_galaxy(url, args=urlencode(args), method="POST")
if data.get('results', None):
return data['results']
return data
@@ -279,7 +279,7 @@ class GalaxyAPI(object):
"github_repo": github_repo,
"secret": secret
})
- data = self.__call_galaxy(url, args=args)
+ data = self.__call_galaxy(url, args=args, method="POST")
return data
@g_connect