-
Notifications
You must be signed in to change notification settings - Fork 651
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
expose incoming call deadline to the server handler #1531
Comments
We are not making any more feature changes to the Node On the other hand, I would have no objection to making this change in the |
@murgatroid99 thanks for your response. |
I ended up implementing this in |
@murgatroid99 thanks a lot, that's really helpful. |
The |
perfect. thanks |
Is your feature request related to a problem? Please describe.
Being able to access incoming request deadline might help with traceability and allow one to implement multi-transport SLA features - in our case we have several transports aside with gRPC and have our own SLA abstraction, which is mapped to gRPC deadlines for gRPC flows.
And it is available for java-grpc, didn't check other implementations.
Describe the solution you'd like
The value is available on the
event.new_call
. I guess it is just a matter of passing it intoServerUnaryCall
(and friends).Describe alternatives you've considered
none
Additional context
none
The text was updated successfully, but these errors were encountered: