-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
This commit is contained in:
jbjohnso 2008-07-14 14:35:54 +00:00
parent 99828e0309
commit 8da81ece39

View File

@ -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($_,@_);
}