redfish_utils: fix reference to local variable 'systems_service' (#50298)

* fixes issue 50296

* fixes the indentation of the return statement

* Adds a conditional test into `_find_systems_resource()` to check the existence
of the Members of System resource

* updates the error message

* harden the conditional test

* Add a changelog
pull/50810/head
Dhanuka 6 years ago committed by John R Barker
parent 1ae365c112
commit 94a1d86d70

@ -0,0 +1,3 @@
---
bugfixes:
- redfish_utils - fix reference to local variable 'systems_service'

@ -133,10 +133,14 @@ class RedfishUtils(object):
if response['ret'] is False:
return response
data = response['data']
for member in data[u'Members']:
systems_service = member[u'@odata.id']
self.systems_uri = systems_service
return {'ret': True}
if data.get(u'Members'):
for member in data[u'Members']:
systems_service = member[u'@odata.id']
self.systems_uri = systems_service
return {'ret': True}
else:
return {'ret': False,
'msg': "ComputerSystem's Members array is either empty or missing"}
def _find_updateservice_resource(self, uri):
response = self.get_request(self.root_uri + uri)

Loading…
Cancel
Save