Fix race conditions in libcontainerd process handling#35809
Merged
thaJeztah merged 2 commits intomoby:masterfrom Dec 16, 2017
Merged
Fix race conditions in libcontainerd process handling#35809thaJeztah merged 2 commits intomoby:masterfrom
thaJeztah merged 2 commits intomoby:masterfrom
Conversation
With the contianerd 1.0 migration we now have strongly typed errors that we can check for process not found. We also had some bad error checks looking for `ESRCH` which would only be returned from `unix.Kill` and never from containerd even though we were checking containerd responses for it. Fixes some race conditions around process handling and our error checks that could lead to errors that propagate up to the user that should not. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
3721605 to
16ff944
Compare
Contributor
|
LGTM |
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
16ff944 to
647cec4
Compare
Closed
Contributor
|
LGTM |
vieux
approved these changes
Dec 16, 2017
Member
|
z failure looks unrelated; restarting for good measure |
|
So this doesnt seem to have fixed my problem =\ |
|
nevermind this has definitely solved the problem i was having with jenkins and docker. |
Member
|
Thanks for testing @jchauncey 👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
With the contianerd 1.0 migration we now have strongly typed errors that
we can check for process not found.
We also had some bad error checks looking for
ESRCHwhich would onlybe returned from
unix.Killand never from containerd even though wewere checking containerd responses for it.
Fixes some race conditions around process handling and our error checks
that could lead to errors that propagate up to the user that should not.
Related to #35594