HDFS-10841. Remove duplicate or unused variable in appendFile(). Contributed by Kihwal Lee.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/f6c0b754 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/f6c0b754 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/f6c0b754 Branch: refs/heads/HDFS-10285 Commit: f6c0b7543f612de756ff0c03e9a2c6e33b496a36 Parents: 7c213c3 Author: Xiao Chen <x...@apache.org> Authored: Tue Sep 6 11:48:35 2016 -0700 Committer: Xiao Chen <x...@apache.org> Committed: Tue Sep 6 11:48:35 2016 -0700 ---------------------------------------------------------------------- .../org/apache/hadoop/hdfs/server/namenode/FSDirAppendOp.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/f6c0b754/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAppendOp.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAppendOp.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAppendOp.java index 5192352..6f898ef 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAppendOp.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAppendOp.java @@ -84,12 +84,10 @@ final class FSDirAppendOp { final LocatedBlock lb; final FSDirectory fsd = fsn.getFSDirectory(); - final String src; final INodesInPath iip; fsd.writeLock(); try { iip = fsd.resolvePathForWrite(pc, srcArg); - src = iip.getPath(); // Verify that the destination does not exist as a directory already final INode inode = iip.getLastINode(); final String path = iip.getPath(); @@ -111,7 +109,7 @@ final class FSDirAppendOp { // not support appending file with striped blocks if (file.isStriped()) { throw new UnsupportedOperationException( - "Cannot append to files with striped block " + src); + "Cannot append to files with striped block " + path); } BlockManager blockManager = fsd.getBlockManager(); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org