-
Notifications
You must be signed in to change notification settings - Fork 18
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
Allow returning metadata alongside success values #323
Comments
There is already: |
Hey @pjfanning thank you for the prompt response. So client side is okay for me. On the server side, I can quite easily read the metadata as well. The problem lies however with writing the metadata on the server side when the response is NOT an error. If the response IS an error then using the |
This looks like akka/akka-grpc#872 - so far, there seems to be no support for this. |
Do you have ideas on how we could go about adding such support? I could perhaps give it a shot |
There are a few problems to solve if you want the Server to support
Another option is to try to build something like akka/akka-grpc#887 |
In the current API grpc metadata is only allowed to be read from (using the power API) or written to in the case of an error using the rich error model. Would it be possible to add metadata alongside the success values?
The text was updated successfully, but these errors were encountered: