From aeb83a2b8a103477d66fbf539adb171f3dfc284c Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Fri, 16 Jan 2009 10:43:09 +0000 Subject: [PATCH] Fix gnt-backup export with short names We need to pass the fully-qualified node to _CheckNodeOnline, not the short one. Reviewed-by: imsnah --- lib/cmdlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index f98204283..9fdfe30a0 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -5859,7 +5859,7 @@ class LUExportInstance(LogicalUnit): if self.dst_node is None: # This is wrong node name, not a non-locked node raise errors.OpPrereqError("Wrong node name %s" % self.op.target_node) - _CheckNodeOnline(self, self.op.target_node) + _CheckNodeOnline(self, self.dst_node.name) # instance disk type verification for disk in self.instance.disks: -- GitLab