Describe the bug
When attempting to echo a message using the grpcurl client with the grpc-kafka configuration in Zilla, excluding the kafka cache bindings results in an error [malformed header: missing HTTP content-type].
To Reproduce
Steps to reproduce the behavior:
- Use zilla-example -> grpc.kafka.echo
- Remove
cache_client & cache_server from the flow.
- Route
grpc-kafka exit to kafka_client.
- Start the stack using
./setup
- Trigger grpcurl command
grpcurl -insecure -proto proto/echo.proto -d '{"message":"Hello World"}' localhost:7153 grpc.examples.echo.Echo.UnaryEcho
- Observe mentioned error
ERROR:
Code: Unknown
Message: malformed header: missing HTTP content-type
Expected behavior
Mentioned output for grpcurl command:
{
"message": "Hello World"
}