-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add a match on RPC method during request and response processing #2
Labels
Comments
grpc headers:
|
The method name can be stored as a field in the struct and will be preserved, just as context ids. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As title. An edge can have multiple RPC methods so we need to call the correct decoder based on the method name.
We can extract the method name from gRPC header (:path) and I added the extraction logic. We need to add codegen logic for the match. (Also, we might want to analyze the proto to know the list of methods first)
The text was updated successfully, but these errors were encountered: