From d811a517444404538a50d9f4ee92e7cf5c847d28 Mon Sep 17 00:00:00 2001 From: Timothy Appnel Date: Wed, 26 Aug 2015 11:53:39 -0400 Subject: [PATCH] Fixed call to undefined attribute when RDS module timeouts waiting. --- lib/ansible/modules/cloud/amazon/rds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/rds.py b/lib/ansible/modules/cloud/amazon/rds.py index 0e60667349..a167894a45 100755 --- a/lib/ansible/modules/cloud/amazon/rds.py +++ b/lib/ansible/modules/cloud/amazon/rds.py @@ -610,7 +610,7 @@ def await_resource(conn, resource, status, module): while wait_timeout > time.time() and resource.status != status: time.sleep(5) if wait_timeout <= time.time(): - module.fail_json(msg="Timeout waiting for resource %s" % resource.id) + module.fail_json(msg="Timeout waiting for RDS resource %s" % resource.name) if module.params.get('command') == 'snapshot': # Temporary until all the rds2 commands have their responses parsed if resource.name is None: