Skip to content

Commit

Permalink
Fix NPE in stacktrace
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume.bouvignies committed Aug 28, 2023
1 parent 68dd5a0 commit aa29539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli/helpers/engine_manager/engine_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,5 +463,5 @@ func (manager *EngineManager) waitUntilEngineStoppedOrError(ctx context.Context)
logrus.Debugf("Waiting engine to report stopped, currently reporting '%v'", status)
time.Sleep(waitUntilEngineStoppedCoolOff)
}
return stacktrace.Propagate(err, "Engine did not report stopped status, last status reported was '%v'", status)
return stacktrace.NewError("Engine did not report stopped status, last status reported was '%v'", status)
}

0 comments on commit aa29539

Please sign in to comment.