You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: