Author: stevel Date: Wed Apr 9 11:11:20 2014 New Revision: 1585932 URL: http://svn.apache.org/r1585932 Log: HADOOP-10104. Update jackson to 1.9.13 (Akira Ajisaka via stevel)
Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ClusterJspHelper.java Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ClusterJspHelper.java URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ClusterJspHelper.java?rev=1585932&r1=1585931&r2=1585932&view=diff ============================================================================== --- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ClusterJspHelper.java (original) +++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ClusterJspHelper.java Wed Apr 9 11:11:20 2014 @@ -358,8 +358,8 @@ class ClusterJspHelper { nn.missingBlocksCount = getProperty(props, "NumberOfMissingBlocks") .getLongValue(); nn.httpAddress = httpAddress.toURL(); - getLiveNodeCount(getProperty(props, "LiveNodes").getValueAsText(), nn); - getDeadNodeCount(getProperty(props, "DeadNodes").getValueAsText(), nn); + getLiveNodeCount(getProperty(props, "LiveNodes").asText(), nn); + getDeadNodeCount(getProperty(props, "DeadNodes").asText(), nn); nn.softwareVersion = getProperty(props, "SoftwareVersion").getTextValue(); return nn; } @@ -373,11 +373,11 @@ class ClusterJspHelper { Map<String, Map<String, String>> statusMap, String props) throws IOException, MalformedObjectNameException { getLiveNodeStatus(statusMap, host, getProperty(props, "LiveNodes") - .getValueAsText()); + .asText()); getDeadNodeStatus(statusMap, host, getProperty(props, "DeadNodes") - .getValueAsText()); + .asText()); getDecommissionNodeStatus(statusMap, host, - getProperty(props, "DecomNodes").getValueAsText()); + getProperty(props, "DecomNodes").asText()); } /**