Fix network route adding rule to filter table (#1266)

Set filterTable only for ipv4 table
This commit is contained in:
Maycon Santos
2023-10-30 09:25:33 +01:00
committed by GitHub
parent e2eef4e3fd
commit 52f5101715
2 changed files with 3 additions and 2 deletions

View File

@ -119,7 +119,7 @@ func (c *clientNetwork) getBestRouteFromStatuses(routePeerStatuses map[string]ro
log.Warnf("the network %s has not been assigned a routing peer as no peers from the list %s are currently connected", c.network, peers)
} else if chosen != currID {
log.Infof("new chosen route is %s with peer %s with score %d", chosen, c.routes[chosen].Peer, chosenScore)
log.Infof("new chosen route is %s with peer %s with score %d for network %s", chosen, c.routes[chosen].Peer, chosenScore, c.network)
}
return chosen