-
Notifications
You must be signed in to change notification settings - Fork 3.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
pkg: prevent oom watcher from depending on shim pkg #11433
Conversation
Signed-off-by: Lei Liu <[email protected]>
Hi @zhaodiaoer. Thanks for your PR. I'm waiting for a containerd 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-sigs/prow repository. |
func New(publisher shim.Publisher) (oom.Watcher, error) { | ||
func New(publisher events.Publisher) (oom.Watcher, error) { |
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.
Do we know if there was a specific reason for picking the shim.Publisher
interface? Because it looks like they're not identical; the shim.Publisher
also implements io.Closer
;
Lines 48 to 52 in 00b357b
// Publisher for events | |
type Publisher interface { | |
events.Publisher | |
io.Closer | |
} |
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.
☝️ introduced in ae87730, which also updated the NewOOMEpoller
(which I think is what's this New
function is now)
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.
If Close is not called, makes sense to reduce the interface. Its harder to expand it later, but calling Close on a passed in Publisher would never be the cleanest solution anyway.
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.
Ah, yes (sorry I had to jump out after I posted); I was indeed looking if any of the other methods were called anywhere. I didn't spot that being the case at an initial glance. The commit was as far as I got to see if there was something I missed, but that's where I left off ❤️
/cherry-pick release/2.0 |
@AkihiroSuda: new pull request created: #11439 In 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 kubernetes-sigs/prow repository. |
Compared with package
pkg/shim
, packagecore/events
is more suitable as the dependency for the oom watcher functions(pkg/oom
).