From 8a164d7b5f68475b28af7aaf3401200c0377019e Mon Sep 17 00:00:00 2001 From: yinle Date: Tue, 5 Jul 2011 08:39:51 +0000 Subject: [PATCH] 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 --- perl-xCAT/xCAT/DBobjUtils.pm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/perl-xCAT/xCAT/DBobjUtils.pm b/perl-xCAT/xCAT/DBobjUtils.pm index 2dccae415..b50920ae2 100644 --- a/perl-xCAT/xCAT/DBobjUtils.pm +++ b/perl-xCAT/xCAT/DBobjUtils.pm @@ -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; } }