ChannelArguments has a SetMaxReceiveMessageSize method:

https://grpc.io/grpc/cpp/classgrpc_1_1_channel_arguments.html#a2629f85664dd2822fe54059c4730baf8

I've used something like:

  grpc::ChannelArguments args;
  args.SetMaxReceiveMessageSize(MAX_RECEIVE_MESSAGE_SIZE);
  grpc::CreateCustomChannel(PORT, grpc::InsecureChannelCredentials(), args);

But I got always 4 * 1024 * 1024 4 MB as MAX SIZE in my C++ Client !

Is it an issue 

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/b02f98cf-fd95-4c5c-b848-87f75890473en%40googlegroups.com.

Reply via email to