HDFS-2726. Fix a logging issue under DFSClient's createBlockOutputStream method (harsh)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1225456 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Harsh J 2011-12-29 07:22:54 +00:00
parent 919f56c3d4
commit 41737432c0
2 changed files with 3 additions and 1 deletions

View File

@ -117,6 +117,8 @@ Trunk (unreleased changes)
HDFS-2669 Enable protobuf rpc for ClientNamenodeProtocol
HDFS-2726. Fix a logging issue under DFSClient's createBlockOutputStream method (harsh)
OPTIMIZATIONS
HDFS-2477. Optimize computing the diff between a block report and the
namenode state. (Tomasz Nykiel via hairong)

View File

@ -1056,7 +1056,7 @@ private boolean createBlockOutputStream(DatanodeInfo[] nodes, long newGS,
} catch (IOException ie) {
DFSClient.LOG.info("Exception in createBlockOutputStream " + ie);
DFSClient.LOG.info("Exception in createBlockOutputStream", ie);
// find the datanode that matches
if (firstBadLink.length() != 0) {