You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ok,it's an proto2 to proto3 error, enum default value are set to the first one, zero now. change rpcz.proto to
message rpc_response_header {
enum status_code {
OK = 0; // Done
ACTIVE = 1;
INACTIVE = 2;
and class connection_manager enum definition to
class connection_manager {
public:
enum status {
DONE = 0,
INACTIVE = 1,
ACTIVE = 2,
compile proto files("syntax=proto3") using protobuf3.1,server run ok and got client request,client crash with Application_error(0)
The text was updated successfully, but these errors were encountered: