From 3e21587f226211ec2c5f69353daea47907a4a4b6 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 26 Aug 2021 08:58:02 -0400 Subject: [PATCH] Update error text for redfish to cover completely unsupported redfish systems --- .../confluent/plugins/hardwaremanagement/redfish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/plugins/hardwaremanagement/redfish.py b/confluent_server/confluent/plugins/hardwaremanagement/redfish.py index 13df986e..45e68da6 100644 --- a/confluent_server/confluent/plugins/hardwaremanagement/redfish.py +++ b/confluent_server/confluent/plugins/hardwaremanagement/redfish.py @@ -183,7 +183,7 @@ class IpmiCommandWrapper(ipmicommand.Command): if 'Access Denied' in str(pe): raise exc.TargetEndpointBadCredentials() if 'Redfish not ready' in str(pe): - raise exc.TargetEndpointUnreachable('Redfish not yet ready') + raise exc.TargetEndpointUnreachable('Redfish is not supported by this system or is not yet ready') raise def close_confluent(self):