YARN-3078. LogCLIHelpers lacks of a blank space before string 'does not exist'. Contributed by Sam Liu.
(cherry picked from commit 5712c9f96a
)
This commit is contained in:
parent
2c69f8cf81
commit
316eedb55f
|
@ -363,6 +363,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
YARN-2731. Fixed RegisterApplicationMasterResponsePBImpl to properly invoke
|
YARN-2731. Fixed RegisterApplicationMasterResponsePBImpl to properly invoke
|
||||||
maybeInitBuilder. (Carlo Curino via wangda)
|
maybeInitBuilder. (Carlo Curino via wangda)
|
||||||
|
|
||||||
|
YARN-3078. LogCLIHelpers lacks of a blank space before string 'does not exist'.
|
||||||
|
(Sam Liu via ozawa)
|
||||||
|
|
||||||
Release 2.6.0 - 2014-11-18
|
Release 2.6.0 - 2014-11-18
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -212,11 +212,11 @@ public class LogCLIHelpers implements Configurable {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void logDirNotExist(String remoteAppLogDir) {
|
private static void logDirNotExist(String remoteAppLogDir) {
|
||||||
System.out.println(remoteAppLogDir + "does not exist.");
|
System.out.println(remoteAppLogDir + " does not exist.");
|
||||||
System.out.println("Log aggregation has not completed or is not enabled.");
|
System.out.println("Log aggregation has not completed or is not enabled.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void emptyLogDir(String remoteAppLogDir) {
|
private static void emptyLogDir(String remoteAppLogDir) {
|
||||||
System.out.println(remoteAppLogDir + "does not have any log files.");
|
System.out.println(remoteAppLogDir + " does not have any log files.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue