From: Guillaume Abrioux Date: Mon, 22 May 2023 12:26:54 +0000 (+0200) Subject: node-proxy: fix a typo in redfish_system.get_status() X-Git-Tag: testing/wip-batrick-testing-20240411.154038~520^2~100 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7d30c787779078b653d29d31be812580a86602d6;p=ceph-ci.git node-proxy: fix a typo in redfish_system.get_status() s/Status/status Signed-off-by: Guillaume Abrioux --- diff --git a/src/cephadm/node-proxy/redfish_system.py b/src/cephadm/node-proxy/redfish_system.py index fbb26a33e4b..fffb45c64de 100644 --- a/src/cephadm/node-proxy/redfish_system.py +++ b/src/cephadm/node-proxy/redfish_system.py @@ -37,7 +37,7 @@ class RedfishSystem(System): return result def get_status(self): - return self._system['Status'] + return self._system['status'] def get_metadata(self): return self._system['metadata']