From bafc1d9018a4d4b9b3fcffe8935a10ab5b973871 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Tue, 3 Feb 2009 10:55:30 +0000 Subject: [PATCH] Small patch for handling errors in node add This small path hopefully fixes the handling of ssh verify errors in node add (note: untested). Reviewed-by: ultrotter --- lib/cmdlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index 0f1a69c92..0b94d64da 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -2160,7 +2160,7 @@ class LUAddNode(LogicalUnit): if result[verifier].data['nodelist']: for failed in result[verifier].data['nodelist']: feedback_fn("ssh/hostname verification failed %s -> %s" % - (verifier, result[verifier]['nodelist'][failed])) + (verifier, result[verifier].data['nodelist'][failed])) raise errors.OpExecError("ssh/hostname verification failed.") # Distribute updated /etc/hosts and known_hosts to all nodes, -- GitLab