HADOOP-10318. Incorrect reference to nodeFile in RumenToSLSConverter error message. Contributed by Wei Yan.
This commit is contained in:
parent
9a87f81ce6
commit
355eaaa33d
@ -1091,6 +1091,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
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user