svn merge -c 1404305 FIXES: MAPREDUCE-4724. job history 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/branches/branch-2@1404306 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aaa448f9dd
commit
9d689a9db9
|
@ -473,6 +473,9 @@ Release 0.23.5 - UNRELEASED
|
||||||
|
|
||||||
MAPREDUCE-4748. Invalid event: T_ATTEMPT_SUCCEEDED at SUCCEEDED. (jlowe)
|
MAPREDUCE-4748. Invalid event: T_ATTEMPT_SUCCEEDED at SUCCEEDED. (jlowe)
|
||||||
|
|
||||||
|
MAPREDUCE-4724. job history 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
|
||||||
|
|
|
@ -85,7 +85,7 @@ public class HsView extends TwoColumnLayout {
|
||||||
private String jobsTableInit() {
|
private String jobsTableInit() {
|
||||||
return tableInit().
|
return tableInit().
|
||||||
// Sort by id upon page load
|
// Sort by id upon page load
|
||||||
append(", aaSorting: [[2, 'asc']]").
|
append(", aaSorting: [[2, 'desc']]").
|
||||||
append(", aoColumnDefs:[").
|
append(", aoColumnDefs:[").
|
||||||
// Maps Total
|
// Maps Total
|
||||||
append("{'sType':'numeric', 'bSearchable': false, 'aTargets': [ 7 ] }").
|
append("{'sType':'numeric', 'bSearchable': false, 'aTargets': [ 7 ] }").
|
||||||
|
|
Loading…
Reference in New Issue