HDFS-14523. Remove excess read lock for NetworkToplogy. Contributed by Wu Weiwei.

Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
Reviewed-by: Chen Liang <cliang@apache.org>
This commit is contained in:
Wei-Chiu Chuang 2019-08-16 17:19:13 -07:00
parent a46ba03d15
commit 971a4c8e83
1 changed files with 2 additions and 12 deletions

View File

@ -295,22 +295,12 @@ public String getRack(String loc) {
/** @return the total number of racks */
public int getNumOfRacks() {
netlock.readLock().lock();
try {
return numOfRacks;
} finally {
netlock.readLock().unlock();
}
return numOfRacks;
}
/** @return the total number of leaf nodes */
public int getNumOfLeaves() {
netlock.readLock().lock();
try {
return clusterMap.getNumOfLeaves();
} finally {
netlock.readLock().unlock();
}
return clusterMap.getNumOfLeaves();
}
/** Return the distance between two nodes