Paulo Valente

Results 185 comments of Paulo Valente

@sleipnir did we end up adding that new keyword opt and release it?

Let's release it as 0.10.2 and retire the previous patches?

Hi, @vegabook. The prints are really hard for me to read. Could you paste those as code blocks instead next time? I believe the error stems from you using an...

I've edited the issue to remove the print renders, but they are viewable if you click the remaining links.

My recommendation is that you try and compare the options that Mint is receiving inside the adapter (change locally and remember to do mix deps.compile grpc afterwards) with the ones...

I mean that you can add `dbg` or similar calls inside the code in the `deps` folder and recompile as the changes are applied.

I think you need to pass transport_opts as a key inside the adapter_opts key. Edit: I expect that to result in the same error as setting it in the config,...

Have you tried also passing the `:cred` option in the GRPC.Stub.connect call? It might be the case there's a hard requirement on that that's being implemented as a soft requirement.

I think this might be it. ```elixir @spec connect(String.t(), keyword()) :: {:ok, Channel.t()} | {:error, any()} def connect(addr, opts \\ []) when is_binary(addr) and is_list(opts) do # This works because...