mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-13 00:24:31 +08:00
server fix
This commit is contained in:
parent
ef81763e30
commit
a394bf7424
2 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue