mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
rabbitmq_exchange - Update requirements to show minimum version of requests (#2785)
This commit is contained in:
parent
0446db9afd
commit
f7c732ad34
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ version_added: "2.0"
|
||||||
short_description: This module manages rabbitMQ exchanges
|
short_description: This module manages rabbitMQ exchanges
|
||||||
description:
|
description:
|
||||||
- This module uses rabbitMQ Rest API to create/delete exchanges
|
- This module uses rabbitMQ Rest API to create/delete exchanges
|
||||||
requirements: [ python requests ]
|
requirements: [ "requests >= 1.0.0" ]
|
||||||
options:
|
options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
|
@ -115,7 +115,7 @@ def main():
|
||||||
urllib.quote(module.params['vhost'],''),
|
urllib.quote(module.params['vhost'],''),
|
||||||
module.params['name']
|
module.params['name']
|
||||||
)
|
)
|
||||||
|
|
||||||
# Check if exchange already exists
|
# Check if exchange already exists
|
||||||
r = requests.get( url, auth=(module.params['login_user'],module.params['login_password']))
|
r = requests.get( url, auth=(module.params['login_user'],module.params['login_password']))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue