do not loop through chassis in manage_indicator_led() (#66044)

pull/65665/merge
Bill Dodd 4 years ago committed by GitHub
parent 936bd83614
commit fe2a8cb145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -702,22 +702,21 @@ class RedfishUtils(object):
payloads = {'IndicatorLedOn': 'Lit', 'IndicatorLedOff': 'Off', "IndicatorLedBlink": 'Blinking'}
result = {}
for chassis_uri in self.chassis_uris:
response = self.get_request(self.root_uri + chassis_uri)
response = self.get_request(self.root_uri + self.chassis_uri)
if response['ret'] is False:
return response
result['ret'] = True
data = response['data']
if key not in data:
return {'ret': False, 'msg': "Key %s not found" % key}
if command in payloads.keys():
payload = {'IndicatorLED': payloads[command]}
response = self.patch_request(self.root_uri + self.chassis_uri, payload)
if response['ret'] is False:
return response
result['ret'] = True
data = response['data']
if key not in data:
return {'ret': False, 'msg': "Key %s not found" % key}
if command in payloads.keys():
payload = {'IndicatorLED': payloads[command]}
response = self.patch_request(self.root_uri + chassis_uri, payload)
if response['ret'] is False:
return response
else:
return {'ret': False, 'msg': 'Invalid command'}
else:
return {'ret': False, 'msg': 'Invalid command'}
return result

Loading…
Cancel
Save