HDFS-3116. Typo in fetchdt error message. Contributed by AOE Takashi.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1304996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
90ea037d21
commit
ea868d3d8b
|
@ -103,6 +103,8 @@ Trunk (unreleased changes)
|
|||
HDFS-3067. NPE in DFSInputStream.readBuffer if read is repeated on
|
||||
corrupted block. (Henry Robinson via atm)
|
||||
|
||||
HDFS-3116. Typo in fetchdt error message. (AOE Takashi via atm)
|
||||
|
||||
Release 0.23.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -132,7 +132,7 @@ public class DelegationTokenFetcher {
|
|||
printUsage(System.err);
|
||||
}
|
||||
if (remaining.length != 1 || remaining[0].charAt(0) == '-') {
|
||||
System.err.println("ERROR: Must specify exacltly one token file");
|
||||
System.err.println("ERROR: Must specify exactly one token file");
|
||||
printUsage(System.err);
|
||||
}
|
||||
// default to using the local file system
|
||||
|
|
Loading…
Reference in New Issue