YARN-7257. AggregatedLogsBlock reports a bad 'end' value as a bad

'start' value. Contributed by Jason Lowe
This commit is contained in:
Xuan 2017-09-27 15:46:18 -07:00
parent c87db8d154
commit 28c4957fcc
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ protected void render(Block html) {
LogAggregationWebUtils.getLogEndIndex(
html, $("end"));
} catch (NumberFormatException ne) {
html.h1().__("Invalid log start value: " + $("end")).__();
html.h1().__("Invalid log end value: " + $("end")).__();
isValid = false;
}