Hi,
I'm trying to make a grpc dial on the client side with my own user-agent string. So I'm using the WithUserAgent option as shown below:
dialWithUserAgent := grpc.Dial("target", grpc.WithUserAgent("user-agent"))
However, when I extract this from the server side (from the context - metadata), I have the "grpc-go/1.10.0" getting appended with my "user-agent". Is there a way for me to avoid this?
My current user-agent string from the context looks like this:
user-agent:[user-agent grpc-go/1.10.0]]