Hi all,
I am working on an async gRPC client in C++. Due to server limitations we need to cap the max send msg size in the client. When we try to send a msg which is larger than the cap, the Write (async) fails, which is as expected.
Is there a way to know that the failure is due to the msg size and not any other reason?
Thanks!