small update
This commit is contained in:
parent
e9c9b6cf29
commit
d1fc1f2f2c
6
wg.go
6
wg.go
@ -158,7 +158,7 @@ func (cfg *Config) Sync(iface string, logger logrus.FieldLogger) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Info("Successfully setup device", "iface", iface)
|
log.Info("Successfully setup device")
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -220,8 +220,12 @@ func syncRoutes(link netlink.Link, cfg *Config, log logrus.FieldLogger) error {
|
|||||||
|
|
||||||
presentRoutes := make(map[string]int, 0)
|
presentRoutes := make(map[string]int, 0)
|
||||||
for _, r := range routes {
|
for _, r := range routes {
|
||||||
|
log := log.WithField("route", r.Dst.String())
|
||||||
if r.Table == cfg.Table {
|
if r.Table == cfg.Table {
|
||||||
presentRoutes[r.Dst.String()] = 1
|
presentRoutes[r.Dst.String()] = 1
|
||||||
|
log.Debug("detected existing route")
|
||||||
|
} else {
|
||||||
|
log.Debug("wrong table for route, skipping")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user