mirror of
https://github.com/status-im/consul.git
synced 2025-02-02 17:03:31 +00:00
Don't include self in tomography
This commit is contained in:
parent
ba6d402e85
commit
885dd87fec
@ -289,10 +289,11 @@ App.NodesShowRoute = App.BaseRoute.extend({
|
||||
dc.coordinates.forEach(function (node) {
|
||||
if (params.name == node.Node) {
|
||||
dc.coordinates.forEach(function (other) {
|
||||
// TODO: ignore self
|
||||
var dist = distance(node, other);
|
||||
distances.push(dist);
|
||||
sum += dist;
|
||||
if (node.Node != other.Node) {
|
||||
var dist = distance(node, other);
|
||||
distances.push(dist);
|
||||
sum += dist;
|
||||
}
|
||||
});
|
||||
distances.sort();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user