-
Notifications
You must be signed in to change notification settings - Fork 69
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
fix: fix typing issue with gRPC metadata when key ends in -bin #2251
Conversation
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.
One suggestion to clarify the doc.
sent along with the request as metadata. If the metadata key has | ||
suffix `-bin`, the value must be bytes.{% endmacro %} |
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.
sent along with the request as metadata. If the metadata key has | |
suffix `-bin`, the value must be bytes.{% endmacro %} | |
Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type `string`, but for metadata keys ending with the | |
suffix `-bin`, the corresponding values must be of type `bytes`.{% endmacro %} |
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.
Done
This PR builds on top of #2253 which adds a macro for metadata
Fixes #2250 🦕