From e87422ee967d99c31be9494c8c7334a0021b7941 Mon Sep 17 00:00:00 2001 From: Manuel Sousa Date: Fri, 8 May 2015 17:30:41 +0100 Subject: Change version and remove result="success" --- messaging/rabbitmq_binding.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'messaging') diff --git a/messaging/rabbitmq_binding.py b/messaging/rabbitmq_binding.py index 17433ecd..731e52ba 100644 --- a/messaging/rabbitmq_binding.py +++ b/messaging/rabbitmq_binding.py @@ -3,7 +3,7 @@ DOCUMENTATION = ''' module: rabbitmq_binding author: Manuel Sousa -version_added: 1.5.4 +version_added: 2.0 short_description: This module manages rabbitMQ bindings description: @@ -132,7 +132,6 @@ def main(): if module.check_mode: module.exit_json( changed= changeRequired, - result = "Success", name = module.params['name'], details = response, arguments = module.params['arguments'] @@ -165,7 +164,6 @@ def main(): if r.status_code == 204 or r.status_code == 201: module.exit_json( changed = True, - result = "Success", name = module.params['name'], destination = module.params['destination'] ) @@ -179,7 +177,6 @@ def main(): else: module.exit_json( changed = False, - result = "Success", name = module.params['name'] ) -- cgit v1.2.1