HADOOP-14156. Fix grammar error in ConfTest.java.

This closes #187

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
Andrey Dyatlov 2017-02-06 19:05:58 +01:00 committed by Akira Ajisaka
parent 4db9cc70d0
commit 04a5f5a6dc
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50

View File

@ -269,7 +269,7 @@ public static void main(String[] args) throws IOException {
} else {
String confDirName = System.getenv(HADOOP_CONF_DIR);
if (confDirName == null) {
terminate(1, HADOOP_CONF_DIR + " does not defined");
terminate(1, HADOOP_CONF_DIR + " is not defined");
}
File confDir = new File(confDirName);
if (!confDir.isDirectory()) {