HADOOP-16662. Remove unnecessary InnerNode check in NetworkTopology#add(). Contributed by Lisheng Sun.
This commit is contained in:
parent
155864da00
commit
2ae4b33d48
|
@ -146,10 +146,8 @@ public class NetworkTopology {
|
|||
if (rack == null) {
|
||||
incrementRacks();
|
||||
}
|
||||
if (!(node instanceof InnerNode)) {
|
||||
if (depthOfAllLeaves == -1) {
|
||||
depthOfAllLeaves = node.getLevel();
|
||||
}
|
||||
if (depthOfAllLeaves == -1) {
|
||||
depthOfAllLeaves = node.getLevel();
|
||||
}
|
||||
}
|
||||
LOG.debug("NetworkTopology became:\n{}", this);
|
||||
|
|
Loading…
Reference in New Issue