From 384f4f1cef0971861a8456801460b745928dc6c8 Mon Sep 17 00:00:00 2001 From: Bill Dodd Date: Thu, 21 Mar 2019 16:50:40 -0500 Subject: [PATCH] fix AttributeError for 'systems_uri' (#54178) --- .../modules/remote_management/redfish/idrac_redfish_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/remote_management/redfish/idrac_redfish_command.py b/lib/ansible/modules/remote_management/redfish/idrac_redfish_command.py index a61970b7d0..52a06c4c50 100644 --- a/lib/ansible/modules/remote_management/redfish/idrac_redfish_command.py +++ b/lib/ansible/modules/remote_management/redfish/idrac_redfish_command.py @@ -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