svn merge -c 1606265 FIXES: YARN-2104. Scheduler queue filter failed to work because index of queue column changed. Contributed by Wangda Tan
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1606266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f364837694
commit
dfe7cbb050
|
@ -281,6 +281,9 @@ Release 2.5.0 - UNRELEASED
|
||||||
YARN-2163. WebUI: Order of AppId in apps table should be consistent with
|
YARN-2163. WebUI: Order of AppId in apps table should be consistent with
|
||||||
ApplicationId.compareTo(). (Wangda Tan via raviprak)
|
ApplicationId.compareTo(). (Wangda Tan via raviprak)
|
||||||
|
|
||||||
|
YARN-2104. Scheduler queue filter failed to work because index of queue
|
||||||
|
column changed. (Wangda Tan via jlowe)
|
||||||
|
|
||||||
Release 2.4.1 - 2014-06-23
|
Release 2.4.1 - 2014-06-23
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -262,7 +262,7 @@ class CapacitySchedulerPage extends RmView {
|
||||||
" var q = $('.q', data.rslt.obj).first().text();",
|
" var q = $('.q', data.rslt.obj).first().text();",
|
||||||
" if (q == 'root') q = '';",
|
" if (q == 'root') q = '';",
|
||||||
" else q = '^' + q.substr(q.lastIndexOf('.') + 1) + '$';",
|
" else q = '^' + q.substr(q.lastIndexOf('.') + 1) + '$';",
|
||||||
" $('#apps').dataTable().fnFilter(q, 3, true);",
|
" $('#apps').dataTable().fnFilter(q, 4, true);",
|
||||||
" });",
|
" });",
|
||||||
" $('#cs').show();",
|
" $('#cs').show();",
|
||||||
"});")._().
|
"});")._().
|
||||||
|
|
|
@ -137,7 +137,7 @@ class DefaultSchedulerPage extends RmView {
|
||||||
" $('#cs').bind('select_node.jstree', function(e, data) {",
|
" $('#cs').bind('select_node.jstree', function(e, data) {",
|
||||||
" var q = $('.q', data.rslt.obj).first().text();",
|
" var q = $('.q', data.rslt.obj).first().text();",
|
||||||
" if (q == 'root') q = '';",
|
" if (q == 'root') q = '';",
|
||||||
" $('#apps').dataTable().fnFilter(q, 3);",
|
" $('#apps').dataTable().fnFilter(q, 4);",
|
||||||
" });",
|
" });",
|
||||||
" $('#cs').show();",
|
" $('#cs').show();",
|
||||||
"});")._();
|
"});")._();
|
||||||
|
|
|
@ -210,7 +210,7 @@ public class FairSchedulerPage extends RmView {
|
||||||
" var q = $('.q', data.rslt.obj).first().text();",
|
" var q = $('.q', data.rslt.obj).first().text();",
|
||||||
" if (q == 'root') q = '';",
|
" if (q == 'root') q = '';",
|
||||||
" else q = '^' + q.substr(q.lastIndexOf('.') + 1) + '$';",
|
" else q = '^' + q.substr(q.lastIndexOf('.') + 1) + '$';",
|
||||||
" $('#apps').dataTable().fnFilter(q, 3, true);",
|
" $('#apps').dataTable().fnFilter(q, 4, true);",
|
||||||
" });",
|
" });",
|
||||||
" $('#cs').show();",
|
" $('#cs').show();",
|
||||||
"});")._().
|
"});")._().
|
||||||
|
|
Loading…
Reference in New Issue