1
0
Fork 0
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:
Bill Dodd 2019-03-21 16:50:40 -05:00 committed by ansibot
parent 2bda9bc4df
commit 384f4f1cef

View file

@ -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