Repository: hadoop Updated Branches: refs/heads/branch-2.8 019ca8f7c -> 7dd879893
HDFS-10292. Add block id when client got Unable to close file exception. Contributed by Brahma Reddy Battula. (cherry picked from commit 2c155afe2736a5571bbb3bdfb2fe6f9709227229) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/7dd87989 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/7dd87989 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/7dd87989 Branch: refs/heads/branch-2.8 Commit: 7dd8798933d71f792d9a61a2bcbe41c3ac78ebc8 Parents: 019ca8f Author: Kihwal Lee <[email protected]> Authored: Thu Apr 14 14:26:59 2016 -0500 Committer: Kihwal Lee <[email protected]> Committed: Thu Apr 14 14:26:59 2016 -0500 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/7dd87989/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java index 6d29ec8..18509f8 100755 --- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java +++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSOutputStream.java @@ -815,7 +815,7 @@ public class DFSOutputStream extends FSOutputSummer try { if (retries == 0) { throw new IOException("Unable to close file because the last block" - + " does not have enough number of replicas."); + + last + " does not have enough number of replicas."); } retries--; Thread.sleep(sleeptime);
