server fix

This commit is contained in:
0xdcarns 2022-01-12 12:51:51 -05:00
parent 6b6ce28b13
commit a1a7811a68
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ import (
"encoding/json"
"errors"
"fmt"
"log"
"sort"
"time"
@ -397,6 +398,7 @@ func GetNodeByIDorMacAddress(uuid string, macaddress string, network string) (mo
logger.Log(2, "rewriting legacy node data; node now has id,", node.ID)
node.PullChanges = "yes"
}
log.Printf("Node is %v, Error is %v \n", node, err)
return node, err
}

View file

@ -87,6 +87,8 @@ func ServerJoin(networkSettings *models.Network, serverID string) error {
node.Network = networkSettings.NetID
cleanupServerIfLegacy(node.MacAddress, network)
logger.Log(2, "adding a server instance on network", node.Network)
err = CreateNode(node)
if err != nil {