-
Notifications
You must be signed in to change notification settings - Fork 253
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
Server-side metadata for all call types #555
Merged
BusyJay
merged 42 commits into
tikv:master
from
BusyJay:introduce-serverside-metadata-api
Feb 23, 2022
Merged
Server-side metadata for all call types #555
BusyJay
merged 42 commits into
tikv:master
from
BusyJay:introduce-serverside-metadata-api
Feb 23, 2022
Conversation
This file contains 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
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
…ement Unpin. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
* Move awaiting of future from ClientUnaryReceiver onto a utility method, .message() * Fix memory issues with moving metadata out of C++ wrapper. * Change priority of arguments to grpcwrap_call_send_status_from_server so that empty metadata is only created if filled metadata is not present. * Still need to add back a legacy API so we can still do receiver.await instead of receiver.message().await. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
…is segfaults, and needs to be fixed. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
…side. This segfaults, and needs to be fixed." This reverts commit 4efa018. Metadata is refcounted internally to the grpc C library, so we can't move out of the C struct. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
…tadata argument. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
…roken, and segfaults. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
…al_metadata. Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Christian Oudard <christian.oudard@gmail.com>
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
3 tasks
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
Thank you so much for continuing this work, I've been busy with other priorities. |
hunterlxt
previously approved these changes
Jan 25, 2022
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 almost the same as the original #543 except c++ wrapper.
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
BusyJay
force-pushed
the
introduce-serverside-metadata-api
branch
from
February 22, 2022 10:21
1a7b4cc
to
a6febca
Compare
hunterlxt
previously approved these changes
Feb 22, 2022
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.
LGTM
BusyJay
force-pushed
the
introduce-serverside-metadata-api
branch
from
February 23, 2022 07:50
d0c62d4
to
a6febca
Compare
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.
This PR continues #543.