Skip to content

Commit

Permalink
Keep original istep error log during reconfig loops
Browse files Browse the repository at this point in the history
The original istep log may contain useful information that we
don't have in the reconfig log.  Instead of deleting it, just
commit it as INFO.

Change-Id: I7cd031997665d70227579b22701ed063d4f81bb5
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/64275
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Marshall J. Wilks <mjwilks@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
  • Loading branch information
dcrowell77 authored and wghoffa committed Aug 31, 2018
1 parent 1e8f52d commit ee83b4d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/usr/initservice/istepdispatcher/istepdispatcher.C
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,11 @@ errlHndl_t IStepDispatcher::executeAllISteps()
// be replaced by the ReconfigLoop info error with the
// same plid that matches the real errors
l_plid = err->plid();
delete err;

// Commit the istep log as informational since it
// might include some useful information
err->setSev(ERRORLOG::ERRL_SEV_INFORMATIONAL);
errlCommit(err, INITSVC_COMP_ID);
err = NULL;
}

Expand Down

0 comments on commit ee83b4d

Please sign in to comment.