-
Notifications
You must be signed in to change notification settings - Fork 1.1k
server: remove reaper, let runc take care of reaping #272
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
Conversation
Signed-off-by: Antonio Murdaca <[email protected]>
|
I didn't see any error either, Good work!! I'll revert that commit from my PR. |
|
The reaping isn't handled by runC -- it's not possible to have a subreaper setup if you use |
right, either way, this patch does seem to fix the issue - @cyphar wdyt? |
| "github.com/Sirupsen/logrus" | ||
| "github.com/kubernetes-incubator/cri-o/utils" | ||
| "github.com/containernetworking/cni/pkg/ns" | ||
| "github.com/kubernetes-incubator/cri-o/utils" |
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.
Just a nit: This change isn't really needed.
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.
this seems a gofmt problem, I have create a commit to add a check in CI.
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.
Mmm pretty sure I'm running gofmt with vim, will double check, thanks
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.
@runcom yeah, I mean you are right in this PR, this is a gofmt problem brought before.
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.
alright then
|
LGTM |
2 similar comments
|
LGTM |
|
LGTM |
This is likely fixing tests and
wait: no child processeserror when runningcri-o.Fix #268
@mrunalp @jjlakis @feiskyer @Crazykev please test this out (as I cannot reproduce
ECHILDerror anymore with this patch)runc does already take care of reaping childs (as I read the code) - I believe we're late here in to reap and killing/stopping/removing/state causes ECHILD so frequently when ops are really fast.
Signed-off-by: Antonio Murdaca [email protected]