Removed log message

This commit is contained in:
Juan Font Alonso 2021-03-17 23:09:45 +01:00
parent 06003974e5
commit 977962736a
1 changed files with 1 additions and 5 deletions

View File

@ -8,7 +8,6 @@ import (
"strconv" "strconv"
"time" "time"
"github.com/davecgh/go-spew/spew"
"github.com/jinzhu/gorm/dialects/postgres" "github.com/jinzhu/gorm/dialects/postgres"
"inet.af/netaddr" "inet.af/netaddr"
"tailscale.com/tailcfg" "tailscale.com/tailcfg"
@ -73,7 +72,7 @@ func (m Machine) toNode() (*tailcfg.Node, error) {
addrs = append(addrs, ip) // missing the ipv6 ? addrs = append(addrs, ip) // missing the ipv6 ?
allowedIPs := []netaddr.IPPrefix{} allowedIPs := []netaddr.IPPrefix{}
allowedIPs = append(allowedIPs, ip) allowedIPs = append(allowedIPs, ip) // we append the node own IP, as it is required by the clients
routesStr := []string{} routesStr := []string{}
if len(m.EnabledRoutes.RawMessage) != 0 { if len(m.EnabledRoutes.RawMessage) != 0 {
@ -147,9 +146,6 @@ func (m Machine) toNode() (*tailcfg.Node, error) {
KeepAlive: true, KeepAlive: true,
MachineAuthorized: m.Registered, MachineAuthorized: m.Registered,
} }
spew.Dump(n)
// n.Key.MarshalText()
return &n, nil return &n, nil
} }