Author: devaraj Date: Tue Oct 15 06:31:50 2013 New Revision: 1532211 URL: http://svn.apache.org/r1532211 Log: MAPREDUCE-5518. Fixed typo "can't read paritions file". Contributed by Albert Chu.
Modified: hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/CHANGES.txt hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/TeraSort.java Modified: hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/CHANGES.txt?rev=1532211&r1=1532210&r2=1532211&view=diff ============================================================================== --- hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/CHANGES.txt (original) +++ hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/CHANGES.txt Tue Oct 15 06:31:50 2013 @@ -25,6 +25,9 @@ Release 2.2.1 - UNRELEASED MAPREDUCE-5546. mapred.cmd on Windows set HADOOP_OPTS incorrectly (Chuan Liu via cnauroth) + MAPREDUCE-5518. Fixed typo "can't read paritions file". (Albert Chu + via devaraj) + Release 2.2.0 - 2013-10-13 INCOMPATIBLE CHANGES Modified: hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/TeraSort.java URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/TeraSort.java?rev=1532211&r1=1532210&r2=1532211&view=diff ============================================================================== --- hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/TeraSort.java (original) +++ hadoop/common/branches/branch-2.2/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/TeraSort.java Tue Oct 15 06:31:50 2013 @@ -213,7 +213,7 @@ public class TeraSort extends Configured splitPoints = readPartitions(fs, partFile, conf); trie = buildTrie(splitPoints, 0, splitPoints.length, new Text(), 2); } catch (IOException ie) { - throw new IllegalArgumentException("can't read paritions file", ie); + throw new IllegalArgumentException("can't read partitions file", ie); } }