-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Unification of receiver names #1186
Unification of receiver names #1186
Conversation
Hi @Adirio. 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. |
Note to reviewers: do not get scared with the number of files modified. They are just pointer name replacements to use |
Hi @Adirio, It shows good, however, see that is not passing in the CI. Shows that it is missing a rebase with the master to pass in the CI. Also, I'd recommend you add here in the first comment the error/warning from the linter used to get it which shows that is your motivation of |
/ok-to-test |
0ef7700
to
8dcb4d5
Compare
/assign @mengqiy |
/assign @camilamacedo86 |
/retest |
Can someone re-trigger Travis? It gave an error trying to find a file that hasn't been touched and is in the expected path. |
HI @Adirio,
If you close and re-open the PR it will be re-trigged. |
49593d6
to
c7ff4fb
Compare
Hi @camilamacedo86,
The rebase was done and the CI is passing correctly. Description was also updated. Do you have any other review or is this PR ready to merge? |
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.
I am ok with. Should not change the current behaviour and is passing in the CI.
Besides it to be in many files the change is small and straight forward. @mengqiy wdyt?
/lgtm /approved
c7ff4fb
to
20f2f7d
Compare
Rebased (no changes) |
20f2f7d
to
adf0318
Compare
I thought I mentioned it somewhere. You know, when you change it in 73 files, it is easy to take gfor granted that the mnemonic is obvious. Added it to the PR description for future reference.
@DirectXMan12 rebase done, could you add the LGTM label again? |
Travis error seems to be related to #1016 being recently merged. |
HI @Adirio, The error shows occur because the files are not updated. I'd recommend you do the following steps. I think it will solve.
|
This already was rebased, and it doesn't change anything in the testdata folder. The problem seems to be introduced by an old PR that was merged yesterday. |
A fix to the Travis error has been provided in #1288, it shouldn't need a rebase afterwards. |
934e831
to
63d2bbb
Compare
Rebased to apply the fix to Travis. This should only need a |
/lgtm |
I will resolve the conflicts tomorrow /hold cancel |
63d2bbb
to
02398f9
Compare
@mengqiy Rebased and ready, only requires LGTM label |
Travis error seems unrelated, please take a look at #1303. |
This PR has been approved and every test passes now. Can someone add again the lgtm label as it was removed in a rebase? |
Signed-off-by: Adrian Orive <[email protected]>
30ec554
to
733fe41
Compare
/lgtm |
Linter is reporting different receiver names (i.e., methods of same struct with different receiver names) as if they were generic. Additionally most of the files use generic receivers such as
a
. Tiis PR changes all receiver names for implementations fo theFile
interface tof
as a mnemonic offile
.Linter message:
Lister description:
Closes: #1182
/kind cleanup