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
The setup is the following: a gRPC server that is behind YARP, and a client that calls the server.
The server has a gRPC bidirectional streaming method exposed. Before the messages are sent on this call, the client and the server have to perform the header exchange:
The client sends the headers to the server.
The server sends the headers to the client.
After the client receives the headers from the server, a regular message exchange starts (e.g., the client sends a message to the server, etc.).
What I observe is that step (3) never happens, as the client never receives the headers from the server.
If the client calls the server directly (without YARP), then step (3) happens, and the call procceeds.
Describe the bug
The setup is the following: a gRPC server that is behind YARP, and a client that calls the server.
The server has a gRPC bidirectional streaming method exposed. Before the messages are sent on this call, the client and the server have to perform the header exchange:
What I observe is that step (3) never happens, as the client never receives the headers from the server.
If the client calls the server directly (without YARP), then step (3) happens, and the call procceeds.
To Reproduce
I've implemented a minimal repro here:
https://github.com/bosh-3shape/YarpGrpcHeadersRepro
Further technical details
The text was updated successfully, but these errors were encountered: