2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-26 11:30:23 +00:00

Fix unhelpful timeout message

ipmi plugin was incorrectly constructing the message about timeout causing
the client having no idea what actually failed.
This commit is contained in:
Jarrod Johnson 2015-03-26 16:13:54 -04:00
parent d2f400d982
commit b97cd79c3a

View File

@ -231,7 +231,7 @@ def perform_request(operator, node, element,
else:
results.put(msg.ConfluentNodeError(node, excmsg))
except exc.TargetEndpointUnreachable as tu:
results.put(msg.ConfluentTargetTimeout(str(tu)))
results.put(msg.ConfluentTargetTimeout(node, str(tu)))
except Exception as e:
results.put(msg.ConfluentNodeError(node, str(e)))
finally: