I have a Go client and a Python server and I am unable to find metadata in the context on the server side
Client:
md := metadata.Pairs("foo", "val")
ctx := metadata.NewContext(context.Background(), md)
client.MyCall(ctx, &message)
Server:
context.invocation_metadata() # all I get from this is (('user-agent', 'grpc-go/1.0'),)
Is there a way to do this?