Skip to content

Commit

Permalink
update error message for repeated installation status failures (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
laverya authored Oct 23, 2024
1 parent 60af177 commit 40c43bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/pkg/upgrade/installation.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func setInstallationState(ctx context.Context, cli client.Client, name string, s
return nil
})
if err != nil {
return fmt.Errorf("failed to set installation state after 5 attempts %w", err)
return fmt.Errorf("persistent conflict error, failed to update installation %s status: %w", name, err)
}

return nil
Expand Down

0 comments on commit 40c43bc

Please sign in to comment.