RabbitMQ-Binding - Allow empty routing key (#2674)

Fixes: #1985
pull/18777/head
Manuel Sousa 8 years ago committed by Matt Clay
parent bdf1a087cb
commit 4289354ce5

@ -127,6 +127,11 @@ def main():
else: else:
dest_type="e" dest_type="e"
if module.params['routing_key'] == "":
props = "~"
else:
props = urllib.quote(module.params['routing_key'],'')
url = "http://%s:%s/api/bindings/%s/e/%s/%s/%s/%s" % ( url = "http://%s:%s/api/bindings/%s/e/%s/%s/%s/%s" % (
module.params['login_host'], module.params['login_host'],
module.params['login_port'], module.params['login_port'],
@ -134,7 +139,7 @@ def main():
urllib.quote(module.params['name'],''), urllib.quote(module.params['name'],''),
dest_type, dest_type,
urllib.quote(module.params['destination'],''), urllib.quote(module.params['destination'],''),
urllib.quote(module.params['routing_key'],'') props
) )
# Check if exchange already exists # Check if exchange already exists

Loading…
Cancel
Save