mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
Intercept another 'unexpected error'
During a particularly hectic init, Invalid Session ID may occur if a command is ran particularly early. Intercept and replace a more clean message.
This commit is contained in:
parent
deb90fbca9
commit
e9ba49a4aa
@ -477,6 +477,10 @@ class IpmiHandler(object):
|
||||
self.output.put(msg.ConfluentTargetTimeout(
|
||||
self.node, self.error))
|
||||
return
|
||||
elif 'Invalid Session ID' in self.error:
|
||||
self.output.put(msg.ConfluentTargetTimeout(
|
||||
self.node, 'Temporary Login Error'))
|
||||
return
|
||||
elif ('Unauthorized' in self.error or
|
||||
'Incorrect password' in self.error):
|
||||
self.output.put(
|
||||
|
Loading…
Reference in New Issue
Block a user