mirror of https://github.com/status-im/consul.git
Fixes RTT command to only compare coordinates in the same area.
This commit is contained in:
parent
1091c7314e
commit
a8ee32cbdd
|
@ -102,21 +102,29 @@ func (c *RTTCommand) Run(args []string) int {
|
|||
return 1
|
||||
}
|
||||
|
||||
// See if the requested nodes are in there.
|
||||
// See if the requested nodes are in there. We only compare
|
||||
// coordinates in the same areas.
|
||||
var area1, area2 string
|
||||
for _, dc := range dcs {
|
||||
for _, entry := range dc.Coordinates {
|
||||
if dc.Datacenter == dc1 && entry.Node == node1 {
|
||||
area1 = dc.AreaID
|
||||
coord1 = entry.Coord
|
||||
}
|
||||
if dc.Datacenter == dc2 && entry.Node == node2 {
|
||||
area2 = dc.AreaID
|
||||
coord2 = entry.Coord
|
||||
}
|
||||
|
||||
if coord1 != nil && coord2 != nil {
|
||||
if area1 == area2 && coord1 != nil && coord2 != nil {
|
||||
goto SHOW_RTT
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Nil out the coordinates so we don't display across areas if
|
||||
// we didn't find anything.
|
||||
coord1, coord2 = nil, nil
|
||||
} else {
|
||||
source = "LAN"
|
||||
|
||||
|
|
Loading…
Reference in New Issue