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:
Tsuyoshi Ozawa 2015-01-22 12:25:05 +09:00
parent 2c69f8cf81
commit 316eedb55f
2 changed files with 5 additions and 2 deletions

View File

@ -363,6 +363,9 @@ Release 2.7.0 - UNRELEASED
YARN-2731. Fixed RegisterApplicationMasterResponsePBImpl to properly invoke
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
INCOMPATIBLE CHANGES

View File

@ -212,11 +212,11 @@ private static void containerLogNotFound(String containerId) {
}
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.");
}
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.");
}
}