do not loop through chassis in manage_indicator_led() (#66044)
This commit is contained in:
parent
936bd83614
commit
fe2a8cb145
1 changed files with 13 additions and 14 deletions
|
@ -702,8 +702,7 @@ 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
|
||||
|
@ -713,7 +712,7 @@ class RedfishUtils(object):
|
|||
|
||||
if command in payloads.keys():
|
||||
payload = {'IndicatorLED': payloads[command]}
|
||||
response = self.patch_request(self.root_uri + chassis_uri, payload)
|
||||
response = self.patch_request(self.root_uri + self.chassis_uri, payload)
|
||||
if response['ret'] is False:
|
||||
return response
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue