elixir-grpc / grpc

An Elixir implementation of gRPC
https://hex.pm/packages/grpc
Apache License 2.0
1.38k stars 212 forks source link

chore: resolve some doc warnings #250

Closed polvalente closed 2 years ago

polvalente commented 2 years ago

closes #249

wingyplus commented 2 years ago

@polvalente you may need to add start_server to this line https://github.com/elixir-grpc/grpc/blob/master/interop/script/run.exs#L17 since interop test does not starting a server

polvalente commented 2 years ago

@polvalente you may need to add start_server to this line https://github.com/elixir-grpc/grpc/blob/master/interop/script/run.exs#L17 since interop test does not starting a server

The problem was that nil or ... doesn't work. It should have been opts[:start_server] || ..., but I refactored into a cond instead