....
service MyService {
rpc InterfaceA(Request) returns (Response);
rpc InterfaceAStream (Request) returns ( stream Response);
}
...
In my server program, when i call InterfaceAStream in Client Program
After the server program replies to several packets, it will report an error:
E0511 12:02:20.464574440 3767361 proto_buffer_writer.h:65] ASSERTION FAILED: !byte_buffer->Valid()
and i dont know why.