remove the warning message to avoid useless warning.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10010 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
yinle 2011-07-05 08:39:51 +00:00
parent 179b952768
commit 8a164d7b5f

View File

@ -2225,14 +2225,10 @@ sub getnodetype
$type = $typep->{nodetype};
push (@types, $type);
} else {
$rsp->{data}->[0] = "Could not find node $nn in ppc table.";
xCAT::MsgUtils->message("I", $rsp, $::callback);
push (@types, undef);
}
}
} else {
$rsp->{data}->[0] = "Could not find node $nn in nodetype table.";
xCAT::MsgUtils->message("I", $rsp, $::callback);
push (@types, undef);
}
}
@ -2264,14 +2260,10 @@ sub getnodetype
$type = $typep->{nodetype};
return $type;
} else {
$rsp->{data}->[0] = "Could not find node $nodes in ppctable table.";
xCAT::MsgUtils->message("I", $rsp, $::callback);
return undef;
}
}
} else {
$rsp->{data}->[0] = "Could not find node $nodes in nodetype table.";
xCAT::MsgUtils->message("I", $rsp, $::callback);
return undef;
}
}