Merge pull request #3662 from vipulnewaskar7/3659-wrong-error-variable-fix

Fixed Init State Error Variable
This commit is contained in:
Mrunal Patel
2022-11-22 18:39:11 -05:00
committed by GitHub
+1 -1
View File
@@ -548,7 +548,7 @@ func (p *initProcess) start() (retErr error) {
// procRun sync.
state, uerr := p.container.updateState(p)
if uerr != nil {
return fmt.Errorf("unable to store init state: %w", err)
return fmt.Errorf("unable to store init state: %w", uerr)
}
p.container.initProcessStartTime = state.InitProcessStartTime