MAPREDUCE-5518. Fixed typo "can't read paritions file". Contributed by Albert Chu.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1532208 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Devarajulu K 2013-10-15 06:28:22 +00:00
parent 258c181ade
commit 4407d5f65f
2 changed files with 4 additions and 1 deletions

View File

@ -216,6 +216,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

View File

@ -213,7 +213,7 @@ public class TeraSort extends Configured implements Tool {
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);
}
}