I have been hunting through the source code and from what I can tell the only client config args that are supported currently are these six.
For a GRPC application that I am building atm (I only have control of the client side, not the server side) I need to set the GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS arg to true.
Is there an "unsafe" way for me to set this arg to true in my ClientConfig? Or does it need to be added as a sum type in the source code here?
Thanks in advance!
I have been hunting through the source code and from what I can tell the only client config args that are supported currently are these six.
For a GRPC application that I am building atm (I only have control of the client side, not the server side) I need to set the GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS arg to
true.Is there an "unsafe" way for me to set this arg to true in my
ClientConfig? Or does it need to be added as a sum type in the source code here?Thanks in advance!