currently the proxy.StreamDirector returns single grpc.ClientConn.
what if i need to return multiple grpc ClientConn at once. this support needs to be added.
current supported:
type StreamDirector func(ctx context.Context, fullMethodName string) (context.Context, *_grpc.ClientConn_**, error)
Required
type StreamDirector func(ctx context.Context, fullMethodName string) (context.Context, *_[]grpc.ClientConn,_** error)
currently the proxy.StreamDirector returns single grpc.ClientConn. what if i need to return multiple grpc ClientConn at once. this support needs to be added.
current supported:
type StreamDirector func(ctx context.Context, fullMethodName string) (context.Context, *_grpc.ClientConn_**, error)
Required type StreamDirector func(ctx context.Context, fullMethodName string) (context.Context, *_[]grpc.ClientConn,_** error)