Re: [grpc-io] Re: Go - Server with TLS and Insecure Client

2021-07-14 Thread 'Menghan Li' via grpc.io
The server side log tells you the connection is closed due to TLS failures. The client is configured to _not_ to TLS, so it doesn't understand the handshake message, and will try to send plaintext. It only sees the connection is closed, but doesn't know why. The client can only report TLS errors

Re: [grpc-io] Re: Go - Server with TLS and Insecure Client

2021-07-13 Thread Amit Saha
On Tue, Jul 13, 2021 at 4:25 AM 'Menghan Li' via grpc.io wrote: > > Yes, this is expected. The connection cannot be created, because the server > is expecting a handshake, but the client is not configured to do it. > > The only thing is, I would expect a better error message. > Can you check the

[grpc-io] Re: Go - Server with TLS and Insecure Client

2021-07-12 Thread 'Menghan Li' via grpc.io
Yes, this is expected. The connection cannot be created, because the server is expecting a handshake, but the client is not configured to do it. The only thing is, I would expect a better error message. Can you check the client and server logs and see if there's any information? https://github.co