-
Notifications
You must be signed in to change notification settings - Fork 921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump golang to 1.23.7 and golangci-lint to 1.64.8 #6218
Conversation
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #6218 +/- ##
==========================================
- Coverage 47.91% 47.90% -0.01%
==========================================
Files 676 676
Lines 55958 55962 +4
==========================================
Hits 26810 26810
- Misses 27400 27404 +4
Partials 1748 1748
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Hi @RainbowMango , please help take a look when you get a change! Thank you! There are six lint errors from a new
|
@@ -1415,14 +1415,14 @@ func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerConditi | |||
return resList | |||
} | |||
|
|||
func max(a, b int32) int32 { | |||
func maxInt32(a, b int32) int32 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the name of the function to avoid overlapping with the name of the built-in max
function.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
on change the name.
But the naming is misleading with the math.MaxInt32.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about maxOfInt32
or computeMaxInt32
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/assign
I will take a look soon.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR bumps the Golang version to v1.23.7 and golangci-lint to v1.64.8 while cleaning up some redundant code patterns and improving function naming for clarity in various modules.
- Updated random number generation variable naming and removed redundant nil checks in tests
- Refactored error creation to use errors.New and updated helper function names for consistency
- Adjusted error handling in test cases and production code for a more streamlined error message format
Reviewed Changes
Copilot reviewed 6 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
pkg/controllers/workloadrebalancer/workloadrebalancer_controller_test.go | Renamed variable from "max" to "maxInt" for clarity in generating a random suffix |
pkg/util/helper/workstatus_test.go | Removed unnecessary nil slice checks in test functions |
pkg/resourceinterpreter/customized/declarative/luavm/lua_test.go | Changed t.Errorf calls to t.Error for error logging in tests |
pkg/estimator/server/estimate.go | Simplified error creation; note potential spelling issue in error message |
pkg/controllers/federatedhpa/federatedhpa_controller.go | Updated error handling and function naming (minInt32/maxInt32) for improved clarity and consistency |
pkg/util/overridemanager/overridemanager.go | Replaced fmt.Errorf with errors.New for consistent error handling in the override manager |
Files not reviewed (3)
- .go-version: Language not supported
- go.mod: Language not supported
- hack/verify-staticcheck.sh: Language not supported
Comments suppressed due to low confidence (1)
pkg/controllers/federatedhpa/federatedhpa_controller.go:1289
- The renaming to 'minInt32' (and similarly 'maxInt32') improves clarity; please ensure that all affected references and related documentation are updated accordingly.
selectPolicyFn = minInt32
@@ -1415,14 +1415,14 @@ func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerConditi | |||
return resList | |||
} | |||
|
|||
func max(a, b int32) int32 { | |||
func maxInt32(a, b int32) int32 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
on change the name.
But the naming is misleading with the math.MaxInt32.
@@ -1415,14 +1415,14 @@ func setConditionInList(inputList []autoscalingv2.HorizontalPodAutoscalerConditi | |||
return resList | |||
} | |||
|
|||
func max(a, b int32) int32 { | |||
func maxInt32(a, b int32) int32 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about maxOfInt32
or computeMaxInt32
?
pkg/controllers/workloadrebalancer/workloadrebalancer_controller_test.go
Outdated
Show resolved
Hide resolved
I agree to ignore these false-positive warnings so do not let that block this PR. |
76f4d99
to
d18d17a
Compare
@RainbowMango @seanlaii Through investigation, only the third item is more suitable for avoiding the conversion by modifying the type. Error: pkg/estimator/client/cache.go:113:86: G115: integer overflow conversion int -> int32 (gosec)
names.GenerateEstimatorServiceName(serviceInfo.NamePrefix, serviceInfo.Name), int32(grpcConfig.TargetPort)) For the others, it is necessary to modify the field definitions in the API or make other changes with relatively high costs, so it is not recommended. |
By how? Give an example. |
func resolveCluster(kubeClient kubernetes.Interface, namespace, id string, port int) ([]string, error)
// findServicePort finds the service port by name or numerically.
func findServicePort(svc *corev1.Service, port int) (*corev1.ServicePort, error) {
for _, svcPort := range svc.Spec.Ports {
if int(svcPort.Port) == port {
return &svcPort, nil
}
}
return nil, apierrors.NewServiceUnavailable(fmt.Sprintf("no service port %d found for service %q", port, svc.Name))
} Change the conversion from |
2c4eecc
to
1126123
Compare
Thanks for the suggestion and review! Do you suggest to do this? In my opinion, since this config is used by multiple components, maybe we could address this in another PR? |
+1 |
1126123
to
01808c5
Compare
agree
@seanlaii Which specific part of the code is causing the issue? Is it the following section? karmada/pkg/estimator/client/service.go Line 74 in 56b72f1
|
Yes, that's the primary reason. The gRPC configuration's |
How about converting if int(svcPort.Port) == port {
return &svcPort, nil
} Of course, this is just a technical discussion, and making such a modification is a bit of a clever workaround. It would be more reasonable to try to change the type of targetPort in the gRPC config. |
Ah, sorry, you're absolutely right! I misread that as an assignment instead of an equality check. Should I change it? |
No need, changing the type of targetPort in the gRPC config in another PR would fix this issue too~ |
Gotcha! Please help review again. Fixed all the lint errors. Thanks! |
Signed-off-by: wei-chenglai <qazwsx0939059006@gmail.com>
01808c5
to
d231a87
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: RainbowMango The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @seanlaii , I noticed that golangci-lint has been upgraded to v2, which is a major change. I don't know if you are interested in upgrading it. After a quick look at the changelog, it appears that the golangci-lint configuration should be tweaked a little bit. |
Hi @RainbowMango , I am interested in working on it. Let me take a look. Thank you! |
Thank you, no rush, take your time. |
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
To remove the dependency of hashicorp, we need to bump golang to 1.23.7.
For more details, please check the discussion at #6212.
Which issue(s) this PR fixes:
Prerequisite of #3941
Special notes for your reviewer:
Does this PR introduce a user-facing change?: