drop AuthTLS option and use client TLSConfig option
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
parent
637e3df24a
commit
a4683c0b78
11
grpc.go
11
grpc.go
@ -35,13 +35,10 @@ type grpcClient struct {
|
|||||||
// secure returns the dial option for whether its a secure or insecure connection
|
// secure returns the dial option for whether its a secure or insecure connection
|
||||||
func (g *grpcClient) secure(addr string) grpc.DialOption {
|
func (g *grpcClient) secure(addr string) grpc.DialOption {
|
||||||
// first we check if theres'a tls config
|
// first we check if theres'a tls config
|
||||||
if g.opts.Context != nil {
|
if g.opts.TLSConfig != nil {
|
||||||
if v := g.opts.Context.Value(tlsAuth{}); v != nil {
|
creds := credentials.NewTLS(g.opts.TLSConfig)
|
||||||
tls := v.(*tls.Config)
|
// return tls config if it exists
|
||||||
creds := credentials.NewTLS(tls)
|
return grpc.WithTransportCredentials(creds)
|
||||||
// return tls config if it exists
|
|
||||||
return grpc.WithTransportCredentials(creds)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// default config
|
// default config
|
||||||
|
11
options.go
11
options.go
@ -3,7 +3,6 @@ package grpc
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"crypto/tls"
|
|
||||||
|
|
||||||
"github.com/unistack-org/micro/v3/client"
|
"github.com/unistack-org/micro/v3/client"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
@ -72,16 +71,6 @@ func Codec(contentType string, c encoding.Codec) client.Option {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// AuthTLS should be used to setup a secure authentication using TLS
|
|
||||||
func AuthTLS(t *tls.Config) client.Option {
|
|
||||||
return func(o *client.Options) {
|
|
||||||
if o.Context == nil {
|
|
||||||
o.Context = context.Background()
|
|
||||||
}
|
|
||||||
o.Context = context.WithValue(o.Context, tlsAuth{}, t)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// MaxRecvMsgSize set the maximum size of message that client can receive.
|
// MaxRecvMsgSize set the maximum size of message that client can receive.
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user