From 354e960cfbd99417ca0a1be295cbdc27654a427f Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 11 Oct 2012 18:02:09 +0000 Subject: [PATCH] Fix problem where node specific errors in some ipmi scenarios are not associated with a node git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13984 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/ipmi.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/ipmi.pm b/xCAT-server/lib/xcat/plugins/ipmi.pm index f44e184ac..e9f38d896 100644 --- a/xCAT-server/lib/xcat/plugins/ipmi.pm +++ b/xCAT-server/lib/xcat/plugins/ipmi.pm @@ -1060,7 +1060,7 @@ sub check_rsp_errors { #TODO: pass in command-specfic error code translation tab } if ($rsp->{code}) { #ipmi error if ($codes{$rsp->{code}}) { - xCAT::SvrUtils::sendmsg([1,$codes{$rsp->{code}}],$callback); + xCAT::SvrUtils::sendmsg([1,$codes{$rsp->{code}}],$callback,$sessdata->{node},%allerrornodes); } else { xCAT::SvrUtils::sendmsg([1,sprintf("Unknown error code %02xh",$rsp->{code})],$callback,$sessdata->{node},%allerrornodes); }