HDFS-13202. Fix the outdated javadocs in HAUtil. Contributed by Chao Sun.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/ed93711d Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/ed93711d Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/ed93711d Branch: refs/heads/YARN-7055 Commit: ed93711da6537a7b7cf6b4a74b73ab80437279d9 Parents: c4f5132 Author: Yiqun Lin <yq...@apache.org> Authored: Thu Mar 1 17:51:43 2018 +0800 Committer: Rohith Sharma K S <rohithsharm...@apache.org> Committed: Fri Mar 2 11:08:29 2018 +0530 ---------------------------------------------------------------------- .../main/java/org/apache/hadoop/hdfs/HAUtil.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/ed93711d/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/HAUtil.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/HAUtil.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/HAUtil.java index 1d294be..fd63b69 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/HAUtil.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/HAUtil.java @@ -147,10 +147,10 @@ public class HAUtil { } /** - * Get the NN ID of the other node in an HA setup. + * Get the NN ID of the other nodes in an HA setup. * * @param conf the configuration of this node - * @return the NN ID of the other node in this nameservice + * @return a list of NN IDs of other nodes in this nameservice */ public static List<String> getNameNodeIdOfOtherNodes(Configuration conf, String nsId) { Preconditions.checkArgument(nsId != null, @@ -183,26 +183,26 @@ public class HAUtil { } /** - * Given the configuration for this node, return a Configuration object for - * the other node in an HA setup. + * Given the configuration for this node, return a list of configurations + * for the other nodes in an HA setup. * * @param myConf the configuration of this node - * @return the configuration of the other node in an HA setup + * @return a list of configuration of other nodes in an HA setup */ public static List<Configuration> getConfForOtherNodes( Configuration myConf) { String nsId = DFSUtil.getNamenodeNameServiceId(myConf); - List<String> otherNn = getNameNodeIdOfOtherNodes(myConf, nsId); + List<String> otherNodes = getNameNodeIdOfOtherNodes(myConf, nsId); // Look up the address of the other NNs - List<Configuration> confs = new ArrayList<Configuration>(otherNn.size()); + List<Configuration> confs = new ArrayList<Configuration>(otherNodes.size()); myConf = new Configuration(myConf); // unset independent properties for (String idpKey : HA_SPECIAL_INDEPENDENT_KEYS) { myConf.unset(idpKey); } - for (String nn : otherNn) { + for (String nn : otherNodes) { Configuration confForOtherNode = new Configuration(myConf); NameNode.initializeGenericKeys(confForOtherNode, nsId, nn); confs.add(confForOtherNode); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org