Generate the local node directly in main.go

Instead of using a trivial function, simply generate the
local node from main.go, manually assign fields from the
nodeMeta struct.
This commit is contained in:
kaiyou
2020-05-07 14:33:10 +02:00
committed by Leo Antunes
parent 0162f9da2c
commit 3a882eb112
2 changed files with 4 additions and 10 deletions

View File

@ -44,7 +44,9 @@ func main() {
}
wg.AssignOverlayAddr((*net.IPNet)(config.OverlayNet), cluster.LocalName)
localNode := common.MakeLocalNode(wg.OverlayAddr, wg.PubKey.String())
localNode := common.Node{}
localNode.OverlayAddr = wg.OverlayAddr
localNode.PubKey = wg.PubKey.String()
cluster.Update(localNode)
nodec := cluster.Members() // avoid deadlocks by starting before join