[grpc-io] Help with asynchronous streaming write

2023-05-05 Thread ctmah...@gmail.com
Hello, I have a C++ gRPC server implemented with Completion Queue API and I have a Python client using server-side streaming RPC. When the server writes the first event (response), it never makes it to the client but if I exit from the server side loop (waiting for updates in the event stream)

[grpc-io] Re: Help with asynchronous streaming write

2023-05-05 Thread ctmah...@gmail.com
After I run with: tcp,http,api I see that write succeeds ( tcp_posix.cc:1873 write: OK and chttp2_transport.cc:773 - state WRITING -> IDLE [finish writing]). Thank you. On Friday, May 5, 2023 at 7:14:48 PM UTC-4 ctmah...@gmail.com wrote: > Hello, > > I have a C++ gRPC server impl

[grpc-io] Re: Help with asynchronous streaming write

2023-05-05 Thread ctmah...@gmail.com
PM UTC-4 ctmah...@gmail.com wrote: > Hello, > > I have a C++ gRPC server implemented with Completion Queue API and I have > a Python client using server-side streaming RPC. When the server writes the > first event (response), it never makes it to the client but if I exit from