From: Vijendar Komalla Date: Tue, 30 Jul 2013 18:52:17 +0000 (-0500) Subject: Rackspace database resource output is null X-Git-Tag: 2014.1~294^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=d5ca1c7195ff66c54ba83c0b37fe51ae4a2cbcc5;p=openstack-build%2Fheat-build.git Rackspace database resource output is null This change is a small correction to my previous change that was already merged(bug #1204601). Below given code snippets show the one line code change (Please note the change in return statement in below code) code before this change: for link in dbinstance.links: if link['rel'] == 'self': return dbinstance.links[0]['href'] code with this change: for link in dbinstance.links: if link['rel'] == 'self': return link['href'] Fixes Bug #1204601 Change-Id: Ia81722eb3877e15e1c472e94ed845f3425949b68 --- diff --git a/heat/engine/resources/rackspace/clouddatabase.py b/heat/engine/resources/rackspace/clouddatabase.py index c01f4fa3..ef344b92 100644 --- a/heat/engine/resources/rackspace/clouddatabase.py +++ b/heat/engine/resources/rackspace/clouddatabase.py @@ -235,7 +235,7 @@ class CloudDBInstance(rackspace_resource.RackspaceResource): for link in dbinstance.links: if link['rel'] == 'self': - return dbinstance.links[0]['href'] + return link['href'] def _resolve_attribute(self, name): if name == 'hostname':