HADOOP-10318. Incorrect reference to nodeFile in RumenToSLSConverter error message. Contributed by Wei Yan.

(cherry picked from commit 355eaaa33d)
This commit is contained in:
Tsuyoshi Ozawa 2015-09-03 22:48:53 +09:00
parent f4ee0bf19f
commit 7f1abf0b27
2 changed files with 4 additions and 1 deletions

View File

@ -594,6 +594,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12362. Set hadoop.tmp.dir and hadoop.log.dir in pom.
(Charlie Helin via wang)
HADOOP-10318. Incorrect reference to nodeFile in RumenToSLSConverter
error message. (Wei Yan via ozawa)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -110,7 +110,7 @@ public static void main(String args[]) throws Exception {
if (! nodeFile.getParentFile().exists()
&& ! nodeFile.getParentFile().mkdirs()) {
System.err.println("ERROR: Cannot create output directory in path: "
+ jsonFile.getParentFile().getAbsoluteFile());
+ nodeFile.getParentFile().getAbsoluteFile());
System.exit(1);
}