Skip to content

update lumera version to 1.8.0#211

Closed
akobrin1 wants to merge 39 commits intomasterfrom
lumera-1.8.0
Closed

update lumera version to 1.8.0#211
akobrin1 wants to merge 39 commits intomasterfrom
lumera-1.8.0

Conversation

@akobrin1
Copy link
Contributor

No description provided.

@akobrin1 akobrin1 closed this Oct 22, 2025
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines 83 to +86
verificationResult, err := configVerifier.VerifyConfig(ctx)
if err != nil {
logtrace.Fatal(ctx, "Config verification failed", logtrace.Fields{"error": err.Error()})
}

if !verificationResult.IsValid() {
logtrace.Fatal(ctx, "Config verification failed", logtrace.Fields{"summary": verificationResult.Summary()})
if err != nil || (verificationResult != nil && !verificationResult.IsValid()) {
logFields := logtrace.Fields{"error": err.Error()}
if verificationResult != nil {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Guard nil err before dereferencing in config verification

The new combined check dereferences err unconditionally via logtrace.Fields{"error": err.Error()}. When VerifyConfig returns an invalid result with err == nil (e.g. configuration is syntactically valid but mismatched with chain registration), this branch executes and panics on the nil pointer before the fatal log is emitted. The start command will crash instead of terminating gracefully on misconfiguration.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants