From ec19a62b0b3b93ed116182093d8af7713343509e Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 22 May 2023 14:26:54 +0200 Subject: [PATCH] node-proxy: fix a typo in redfish_system.get_status() s/Status/status Signed-off-by: Guillaume Abrioux (cherry picked from commit 7d30c787779078b653d29d31be812580a86602d6) --- src/cephadm/node-proxy/redfish_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cephadm/node-proxy/redfish_system.py b/src/cephadm/node-proxy/redfish_system.py index fbb26a33e4bd6..fffb45c64dec0 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'] -- 2.39.5