Skip the tls verify on the client side for now
This commit is contained in:
parent
4f2a7edeb1
commit
500e0f9557
1 changed files with 3 additions and 1 deletions
|
@ -187,7 +187,9 @@ func InnerMain(command string, args ...string) error {
|
|||
return fmt.Errorf("no host set in %s, set one with '%s config {HOST}'", ConfigPath(), os.Args[0])
|
||||
}
|
||||
|
||||
tls := &tls.Config{}
|
||||
tls := &tls.Config{
|
||||
InsecureSkipVerify: true,
|
||||
}
|
||||
|
||||
// Set up the server
|
||||
clientConn, err := grpc.Dial(fmt.Sprintf("%s:%d", config.Host, gRPCport), grpc.WithTransportCredentials(credentials.NewTLS(tls)))
|
||||
|
|
Loading…
Add table
Reference in a new issue