You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, when I send metadata using grpc I am able to get the k/v pairs in my handler. However, when I do the same using http I get nothing. I see the headers getting added to the context as they're provided in the request and in lower-case.
I am using the following code, which always returns false when using http:
md, ok := metadata.FromIncomingContext(ctx); ok
What is the proper way I should be doing this?
The text was updated successfully, but these errors were encountered:
Hi, when I send metadata using grpc I am able to get the k/v pairs in my handler. However, when I do the same using http I get nothing. I see the headers getting added to the context as they're provided in the request and in lower-case.
I am using the following code, which always returns false when using http:
md, ok := metadata.FromIncomingContext(ctx); ok
What is the proper way I should be doing this?
The text was updated successfully, but these errors were encountered: