diff --git a/confluent_server/confluent/discovery/handlers/xcc.py b/confluent_server/confluent/discovery/handlers/xcc.py index faf77c9f..ad222489 100644 --- a/confluent_server/confluent/discovery/handlers/xcc.py +++ b/confluent_server/confluent/discovery/handlers/xcc.py @@ -32,7 +32,8 @@ class NodeHandler(immhandler.NodeHandler): ipmicmd = self._get_ipmicmd() ipmicmd.xraw_command(netfn=0x3a, command=0xf1, data=(1,)) except pygexc.IpmiException as e: - if e.ipmicode != 193: + if (e.ipmicode != 193 and 'Unauthorized name' not in str(e) and + 'Incorrect password' not in str(e)): # raise an issue if anything other than to be expected raise #TODO: decide how to clean out if important