We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Upstream discussion: soheilhy/cmux#64, grpc/grpc-go#2406 If you read through the cmux comments you'll see mention of a java workaround (soheilhy/cmux#64 (comment)), which is now needed for go as well.
Changing one line in server/main.go should do it:
server/main.go
- grpcListener := m.Match(cmux.HTTP2HeaderField("content-type", "application/grpc")) + grpcListener := m.MatchWithWriters(cmux.HTTP2MatchHeaderFieldSendSettings("content-type", "application/grpc"))
The text was updated successfully, but these errors were encountered:
@mpictor that works, thank you for taking the time to post it.
Sorry, something went wrong.
No branches or pull requests
Upstream discussion: soheilhy/cmux#64, grpc/grpc-go#2406
If you read through the cmux comments you'll see mention of a java workaround (soheilhy/cmux#64 (comment)), which is now needed for go as well.
Changing one line in
server/main.go
should do it:The text was updated successfully, but these errors were encountered: