NO-JIRA: correct issues found while rebasing bump(api,client-go)#30659
NO-JIRA: correct issues found while rebasing bump(api,client-go)#30659sanchezl wants to merge 2 commits intoopenshift:mainfrom
Conversation
|
Pipeline controller notification For optional jobs, comment This repository is configured in: automatic mode |
|
@sanchezl: This pull request explicitly references no jira issue. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: sanchezl The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/hold for openshift/machine-config-operator#5500 |
d640f04 to
298529e
Compare
|
/hold cancel |
|
Scheduling required tests: |
298529e to
a9b70a0
Compare
|
Scheduling required tests: Scheduling tests matching the |
|
/retest-required |
a9b70a0 to
057618a
Compare
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
🚧 Files skipped from review as they are similar to previous changes (1)
WalkthroughTwo test utility files are updated: one refactors version comparison logic to check specific fields instead of deep equality, and another corrects the feature guard condition for InsightsDataGather support detection. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes ✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 golangci-lint (2.11.3)Error: can't load config: unsupported version of the configuration: "" See https://golangci-lint.run/docs/product/migration-guide for migration instructions Comment |
|
@sanchezl: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
057618a to
e0befec
Compare
|
@sanchezl: This pull request explicitly references no jira issue. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Scheduling required tests: Scheduling tests matching the |
Summary
While rebasing the
bump(api,client-go)PR, I noticed a couple of discrepancies that needed fixing:configv1.Updateis no longer directly comparable (e.g.,==orreflect.DeepEqual) after the API bump. Replacedreflect.DeepEqualwith field-by-field comparison of the fields that identify the update target (Architecture,Version,Image).InsightsDataGathers()was incorrectly checkingc.v1Kinds["APIServer"]and panicking with an"APIServer not implemented"message. Corrected both to reference"InsightsDataGather".