YARN-159. RM web ui applications page should be sorted to display last app first (tgraves via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1404228 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c15c192ad0
commit
9f55dd3a54
|
@ -190,6 +190,9 @@ Release 0.23.5 - UNRELEASED
|
||||||
YARN-165. RM should point tracking URL to RM web page for app when AM fails
|
YARN-165. RM should point tracking URL to RM web page for app when AM fails
|
||||||
(jlowe via bobby)
|
(jlowe via bobby)
|
||||||
|
|
||||||
|
YARN-159. RM web ui applications page should be sorted to display last app
|
||||||
|
first (tgraves via bobby)
|
||||||
|
|
||||||
Release 0.23.4 - UNRELEASED
|
Release 0.23.4 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class RmView extends TwoColumnLayout {
|
||||||
append("null,{sType:'title-numeric', bSearchable:false}, null]");
|
append("null,{sType:'title-numeric', bSearchable:false}, null]");
|
||||||
|
|
||||||
// Sort by id upon page load
|
// Sort by id upon page load
|
||||||
init.append(", aaSorting: [[0, 'asc']]");
|
init.append(", aaSorting: [[0, 'desc']]");
|
||||||
|
|
||||||
String rows = $("rowlimit");
|
String rows = $("rowlimit");
|
||||||
int rowLimit = rows.isEmpty() ? MAX_DISPLAY_ROWS : Integer.parseInt(rows);
|
int rowLimit = rows.isEmpty() ? MAX_DISPLAY_ROWS : Integer.parseInt(rows);
|
||||||
|
|
Loading…
Reference in New Issue