HDFS-3234. Accidentally left log message in GetConf after HDFS-3226. Contributed by Todd Lipcon.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1311541 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Todd Lipcon 2012-04-10 00:59:38 +00:00
parent b28f134e9c
commit 91528ce9ed
2 changed files with 2 additions and 1 deletions

View File

@ -462,6 +462,8 @@ Release 2.0.0 - UNRELEASED
HDFS-3214. InterDatanodeProtocolServerSideTranslatorPB doesn't handle
null response from initReplicaRecovery (todd)
HDFS-3234. Accidentally left log message in GetConf after HDFS-3226 (todd)
BREAKDOWN OF HDFS-1623 SUBTASKS
HDFS-2179. Add fencing framework and mechanisms for NameNode HA. (todd)

View File

@ -248,7 +248,6 @@ public class GetConf extends Configured implements Tool {
@Override
int doWorkInternal(GetConf tool, String[] args) throws Exception {
this.key = args[0];
System.err.println("key: " + key);
return super.doWorkInternal(tool, args);
}
}