From b3009eb2344d05d3a4bf10bc437738bf1c779cc4 Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Tue, 28 Nov 2017 11:33:39 -0500 Subject: [PATCH] Improve the error message when BMC does not return a dump ID --- xCAT-server/lib/xcat/plugins/openbmc.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/openbmc.pm b/xCAT-server/lib/xcat/plugins/openbmc.pm index 731150bc0..546a42233 100644 --- a/xCAT-server/lib/xcat/plugins/openbmc.pm +++ b/xCAT-server/lib/xcat/plugins/openbmc.pm @@ -2717,7 +2717,7 @@ sub rspconfig_dump_response { xCAT::SvrUtils::sendmsg("[$dump_id] success", $callback, $node); } } else { - xCAT::SvrUtils::sendmsg("Did not get new dump ID from OpenBMC", $callback, $node); + xCAT::SvrUtils::sendmsg([1, "BMC returned $::RESPONSE_OK but no ID was returned. Verify manually on the BMC."], $callback, $node); $next_status{ $node_info{$node}{cur_status} } = ""; } }