mirror of
https://github.com/gravitl/netmaker.git
synced 2025-02-26 17:15:23 +08:00
adding comments, removing bad check
This commit is contained in:
parent
6a90cd803a
commit
91ca96534b
2 changed files with 2 additions and 3 deletions
|
@ -212,7 +212,7 @@ func GetPeerUpdate(node *models.Node) (models.PeerUpdate, error) {
|
|||
} else {
|
||||
continue
|
||||
}
|
||||
if node.LocalListenPort != peer.LocalListenPort && peer.LocalListenPort != 0 {
|
||||
if peer.LocalListenPort != 0 {
|
||||
peer.ListenPort = peer.LocalListenPort
|
||||
} else {
|
||||
continue
|
||||
|
|
|
@ -2,7 +2,6 @@ package functions
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"log"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
|
@ -28,6 +27,7 @@ func GetLocalListenPort(ifacename string) (int32, error) {
|
|||
return int32(i), nil
|
||||
}
|
||||
|
||||
// UpdateLocalListenPort - check local port, if different, mod config and publish
|
||||
func UpdateLocalListenPort(nodeCfg *config.ClientConfig) error {
|
||||
var err error
|
||||
ifacename := getRealIface(nodeCfg.Node.Interface, nodeCfg.Node.Address)
|
||||
|
@ -41,7 +41,6 @@ func UpdateLocalListenPort(nodeCfg *config.ClientConfig) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
log.Println("server: " + nodeCfg.Server.Server)
|
||||
if err := PublishNodeUpdate(nodeCfg); err != nil {
|
||||
logger.Log(0, "could not publish local port change")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue