Make inproc transport properly obey status ordering rules#17096
Merged
vjpai merged 2 commits intogrpc:masterfrom Nov 5, 2018
Merged
Make inproc transport properly obey status ordering rules#17096vjpai merged 2 commits intogrpc:masterfrom
vjpai merged 2 commits intogrpc:masterfrom
Conversation
|
|
|
|
|
|
|
|
Contributor
|
"If it doesn't come with a test, is it a real PR?" --Vijay Pai, 2018 |
Contributor
Author
|
Sometimes I wish I could just keep my mouth shut.... |
|
|
Contributor
Author
|
Commit a3b803c adds a new test case. I have confirmed that without the |
|
1 similar comment
|
|
ncteisen
approved these changes
Nov 5, 2018
|
|
|
|
|
|
|
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The inproc transport was subtly violating the status ordering rules . This was not visible since only the C++ API was exposing the inproc transport, and the C++ API doesn't request status early (until the callback streaming client API came along). Technically, this was preventing the use of the inproc transport with, for example, Python that does request status early.