From 2f39a9182c8fa32d5570bb73c5818aa393ba7a0e Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 11 Oct 2012 18:02:49 +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/branches/2.7@13985 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 90c7a36b3..9167b3ed7 100644 --- a/xCAT-server/lib/xcat/plugins/ipmi.pm +++ b/xCAT-server/lib/xcat/plugins/ipmi.pm @@ -1058,7 +1058,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); }