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
Along with the straightforward build.rs (compiling the proto/hello.proto) and the mod unix found in the uds example.
Running cargo run --bin server successfully starts the server. However, when executing a grpcurl call from the proto/ directory, the following error is encountered:
I have first encountered this error when executing a gRPC call from a Go client, so I do not think that it is an issue from grpcurl. It seems to be related to the unix domain socket listener, since listening on a random TCP port works:
Bug Report
Version
tonic
v0.5.2
tonic-build
v0.5.2
Platform
Linux 5.13.9-arch1-1 x86_64 GNU/Linux
Description
I tried to keep the example as small as possible:
proto/hello.proto
Cargo.toml
src/server.rs
Along with the straightforward
build.rs
(compiling theproto/hello.proto
) and themod unix
found in the uds example.Running
cargo run --bin server
successfully starts the server. However, when executing a grpcurl call from theproto/
directory, the following error is encountered:I have first encountered this error when executing a gRPC call from a Go client, so I do not think that it is an issue from grpcurl. It seems to be related to the unix domain socket listener, since listening on a random TCP port works:
Any ideas how this can be fixed or what the root cause is?
The text was updated successfully, but these errors were encountered: