]> review.fuel-infra Code Review - openstack-build/heat-build.git/commit
Rackspace database resource output is null
authorVijendar Komalla <vijendar.komalla@RACKSPACE.COM>
Tue, 30 Jul 2013 18:52:17 +0000 (13:52 -0500)
committerVijendar Komalla <vijendar.komalla@RACKSPACE.COM>
Tue, 30 Jul 2013 18:52:28 +0000 (13:52 -0500)
commitd5ca1c7195ff66c54ba83c0b37fe51ae4a2cbcc5
tree15b6ec40c44c5221e13ce1a9bf5ead8101fc7e18
parent2ffb44e0aaffe876deaabed408c2a823151c8641
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
heat/engine/resources/rackspace/clouddatabase.py