HADOOP-16662. Remove unnecessary InnerNode check in NetworkTopology#add(). Contributed by Lisheng Sun.

This commit is contained in:
Ayush Saxena 2019-10-19 11:05:54 +05:30
parent 155864da00
commit 2ae4b33d48
1 changed files with 2 additions and 4 deletions

View File

@ -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);