frontend: remove brackets from ASN (caused by confederation)
This commit is contained in:
parent
89fe931abe
commit
fe42879d20
@ -74,6 +74,11 @@ func birdRouteToGraphviz(servers []string, responses []string, target string) st
|
|||||||
// Connect each node on AS path
|
// Connect each node on AS path
|
||||||
paths := strings.Split(strings.TrimSpace(routeASPath), " ")
|
paths := strings.Split(strings.TrimSpace(routeASPath), " ")
|
||||||
|
|
||||||
|
for pathIndex := range paths {
|
||||||
|
paths[pathIndex] = strings.TrimPrefix(paths[pathIndex], "(")
|
||||||
|
paths[pathIndex] = strings.TrimSuffix(paths[pathIndex], ")")
|
||||||
|
}
|
||||||
|
|
||||||
// First step starting from originating server
|
// First step starting from originating server
|
||||||
if len(paths) > 0 {
|
if len(paths) > 0 {
|
||||||
if len(routeNexthop) > 0 {
|
if len(routeNexthop) > 0 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user