mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
exchange name contains chars that needs to be quoted
This commit is contained in:
parent
5bedb1f12d
commit
a364ec5483
1 changed files with 4 additions and 4 deletions
|
@ -131,9 +131,9 @@ def main():
|
||||||
module.params['login_host'],
|
module.params['login_host'],
|
||||||
module.params['login_port'],
|
module.params['login_port'],
|
||||||
urllib.quote(module.params['vhost'],''),
|
urllib.quote(module.params['vhost'],''),
|
||||||
module.params['name'],
|
urllib.quote(module.params['name'],''),
|
||||||
dest_type,
|
dest_type,
|
||||||
module.params['destination'],
|
urllib.quote(module.params['destination'],''),
|
||||||
urllib.quote(module.params['routing_key'],'')
|
urllib.quote(module.params['routing_key'],'')
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -173,9 +173,9 @@ def main():
|
||||||
module.params['login_host'],
|
module.params['login_host'],
|
||||||
module.params['login_port'],
|
module.params['login_port'],
|
||||||
urllib.quote(module.params['vhost'],''),
|
urllib.quote(module.params['vhost'],''),
|
||||||
module.params['name'],
|
urllib.quote(module.params['name'],''),
|
||||||
dest_type,
|
dest_type,
|
||||||
module.params['destination']
|
urllib.quote(module.params['destination'],'')
|
||||||
)
|
)
|
||||||
|
|
||||||
r = requests.post(
|
r = requests.post(
|
||||||
|
|
Loading…
Reference in a new issue