adjusting client join

This commit is contained in:
0xdcarns 2022-01-11 10:44:49 -05:00 committed by Matthew R Kasun
parent 6ad6e2078b
commit 66d6c71441
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ import (
"context"
"encoding/json"
"errors"
"log"
"github.com/gravitl/netmaker/database"
"github.com/gravitl/netmaker/functions"
@ -118,6 +119,8 @@ func (s *NodeServiceServer) Login(ctx context.Context, req *nodepb.Object) (*nod
password := reqNode.Password
macaddress := reqNode.MacAddress
log.Printf("authing node: %v \n", reqNode)
var result models.NodeAuth
var err error
// err := errors.New("generic server error")

View file

@ -127,6 +127,7 @@ func JoinNetwork(cfg config.ClientConfig, privateKey string) error {
if cfg.Node.IsServer != "yes" {
ncutils.Log("joining " + cfg.Network + " at " + cfg.Server.GRPCAddress)
var wcclient nodepb.NodeServiceClient
log.Printf("used: %v\n", postnode)
conn, err := grpc.Dial(cfg.Server.GRPCAddress,
ncutils.GRPCRequestOpts(cfg.Server.GRPCSSL))