mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fix AttributeError for 'systems_uri' (#54178)
This commit is contained in:
parent
2bda9bc4df
commit
384f4f1cef
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ class IdracRedfishUtils(RedfishUtils):
|
|||
jobs = "Jobs"
|
||||
|
||||
# Search for 'key' entry and extract URI from it
|
||||
response = self.get_request(self.root_uri + self.systems_uri)
|
||||
response = self.get_request(self.root_uri + self.systems_uris[0])
|
||||
if response['ret'] is False:
|
||||
return response
|
||||
result['ret'] = True
|
||||
|
|
Loading…
Reference in a new issue