From 8da81ece39a815a766a9da8d73a75d207dfd613e Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Mon, 14 Jul 2008 14:35:54 +0000 Subject: [PATCH] -Fix syntax error in Table.pm git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1878 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Table.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Table.pm b/perl-xCAT/xCAT/Table.pm index 250c3708b..834b059a3 100644 --- a/perl-xCAT/xCAT/Table.pm +++ b/perl-xCAT/xCAT/Table.pm @@ -892,7 +892,7 @@ sub setNodesAttribs { #-Insert intelligently with respect to scale #Intelligently in this case means folding them to some degree. Update where clauses will be longer, but must be capped to avoid exceeding SQL statement length restrictions on some DBs. Restricting even all the way down to 256 could provide better than an order of magnitude better performance though my $self = shift; - my $nodelist = shift + my $nodelist = shift; foreach (@$nodelist) { $self->setNodeAttribs($_,@_); }