-
Notifications
You must be signed in to change notification settings - Fork 295
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
🌱 lint: fix duplicated words via dupword linter #2260
🌱 lint: fix duplicated words via dupword linter #2260
Conversation
|
Welcome @MrDXY! |
Hi @MrDXY. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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 kubernetes/test-infra repository. |
/ok-to-test |
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.
one nit.
Thanks for picking up this work!
main.go
Outdated
@@ -254,7 +254,7 @@ func main() { | |||
addToManager := func(ctx *context.ControllerManagerContext, mgr ctrlmgr.Manager) error { | |||
tracker, err := setupRemoteClusterCacheTracker(ctx, mgr) | |||
if err != nil { | |||
return perrors.Wrapf(err, "unable to create remote cluster tracker tracker") | |||
return perrors.Wrapf(err, "unable to create remote cluster tracker") |
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.
return perrors.Wrapf(err, "unable to create remote cluster tracker") | |
return perrors.Wrapf(err, "unable to create remote cluster cache tracker") |
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.
Got it!
7432b14
to
1708c4c
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
LGTM label has been added. Git tree hash: dfe55c0145c65861da670458629017feabadb1d1
|
1708c4c
to
b16216e
Compare
/ok-to-test |
I apologize for any inconvenience. I've made several adjustments after your comment due to test failures attributed to |
I hope you did not do this manually :-) that's what is done via /lgtm |
LGTM label has been added. Git tree hash: ad163fc0ec062f5efc9082a98a4e7bacb2173bed
|
No worries :). Thank you and welcome :) /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer 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 |
What this PR does / why we need it:
Check the duplicate words in the code via linter configuration, and fix it.
Enable
dupword
check in.golangci.yml
configuration file.Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Part of #2058