-
Notifications
You must be signed in to change notification settings - Fork 62
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
remove: nodechecks function as it is not being used #683
remove: nodechecks function as it is not being used #683
Conversation
12ac019
to
2f8de04
Compare
/retest |
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.
Nice one! It looks like it's not being used anywhere, in fact, it was a function created 2 years ago and seems never modified since then. I think it's safe to remove.
There are a number of functions in that file that are not being used as well. For example:
func (c *EtcdErrorClassifier) Classify(err error) retrier.Action { |
That one in particular was created 4 months ago and is not used, and not updated since then. Wondering if a clean-up of all unused functions is a good idea given they won't be used again in the future.
cc: @astefanutti @z103cb interested in your thoughts on doing a complete clean-up on unused functions as a follow-up to this PR?
@VanillaSpoon you can |
e101e44
to
57a04f6
Compare
57a04f6
to
bba7dd1
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 thanks @VanillaSpoon !
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: astefanutti, ChristianZaccaria 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 |
@ChristianZaccaria that sounds desirable / reasonable to me 👍🏼. |
bbb6871
into
project-codeflare:main
What changes have been made
Removal of the unused function
Checks