From 9e1450fe1253e0341efca9ed93230ddaf973582a Mon Sep 17 00:00:00 2001 From: yangsong Date: Thu, 15 Mar 2018 17:44:20 +0800 Subject: [PATCH] fix syntax issue (#4950) --- xCAT-server/lib/xcat/plugins/updatenode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/updatenode.pm b/xCAT-server/lib/xcat/plugins/updatenode.pm index e97fd06da..dba0ac5f6 100644 --- a/xCAT-server/lib/xcat/plugins/updatenode.pm +++ b/xCAT-server/lib/xcat/plugins/updatenode.pm @@ -326,7 +326,7 @@ sub preprocess_updatenode if (@invalidnodes){ my %allnodes=map {$_,1} @{$request->{node}}; foreach my $node (@invalidnodes){ - xCAT::MsgUtils->report_node_error($callback,$node,"Could not determine or resolve xcatmaster for $node. Will skip this node.") + xCAT::MsgUtils->report_node_error($callback,$node,"Could not determine or resolve xcatmaster for $node. Will skip this node."); delete $allnodes{$node}; } $request->{node}=[];