-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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 k/utils to v0.0.0-20211116205334-6203023598ed #3014
Conversation
Hi @Dingshujie. Thanks for your PR. I'm waiting for a google 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. |
c539500
to
60ba17e
Compare
60ba17e
to
b27d09a
Compare
@bobbypage can you review this PR? |
/assign @bobbypage |
This picks up fix kubernetes/utils#228 |
Thanks @Dingshujie, LGTM! |
/ok-to-test |
cadvisor has memory leak: cadvisor watch all cgroup director. when file or directory delete, inotify will recevie IN_DELETE event, when cadvisor recevie IN_DELETE, cadvisor will call inotify RemoveWatch to remove watch descriptor. When watch descriptor delete before function called, function will return EINVAL, may lead this path remain in watches and paths map, and also not delete path in containersWatched, finally lead to memory leak
update k/utils repo to fixs inotify memory leak.
fixs #100241