-
Notifications
You must be signed in to change notification settings - Fork 54
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
Use an upstream fix for the zombie problem #79
Conversation
The zombie processes problem is a currently open issue of opencontainers: opencontainers/runc#1443 Currently there is a PR that I've tested to work with our use cases: opencontainers/runc#1506 But Glide doesn't seem to be able to get a version from a PR; and if I add LittleLightLittleFire's to the dependencies (and change the imports in the Go files) glide then fails with some error related to the other parts of libopencontainers and the fork having the same dependencies. So, this (ugly but simple) workaround in the Makefile was created to use the upstream PR so the machine-learning department can continue slurping all the code in the world while the upstream PR is merged.
Codecov Report
@@ Coverage Diff @@
## master #79 +/- ##
=======================================
Coverage 58.78% 58.78%
=======================================
Files 14 14
Lines 888 888
=======================================
Hits 522 522
Misses 327 327
Partials 39 39 Continue to review full report at Codecov.
|
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.
Looks good, but you'll have to track this upstream issue.
@smola yeah I'm watching it. |
Don't merge yet, let me check if I can fork the upstream fix into bblfsh as we talked in Slack. |
Codecov Report
@@ Coverage Diff @@
## master #79 +/- ##
=======================================
Coverage 58.78% 58.78%
=======================================
Files 14 14
Lines 888 888
=======================================
Hits 522 522
Misses 327 327
Partials 39 39 Continue to review full report at Codecov.
|
@juanjux CI is failing, I'd say due to having added |
Nah, it's an URL, it was the lack of an |
The zombie processes problem is a currently open issue of
opencontainers:
opencontainers/runc#1443
Currently there is a PR that I've tested to work with our use cases:
opencontainers/runc#1506
This PR uses the version from that opencontainer's PR that have been tested to fix the problem.
Fixes #42