You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by je...@apache.org on 2016/05/31 19:43:22 UTC

tez git commit: TEZ-3278. Hide Swimlane from Tez UI (jeagles)

Repository: tez
Updated Branches:
  refs/heads/branch-0.8 06d483c65 -> c9c6c920f


TEZ-3278. Hide Swimlane from Tez UI (jeagles)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/c9c6c920
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/c9c6c920
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/c9c6c920

Branch: refs/heads/branch-0.8
Commit: c9c6c920f8a63a36fc0caf610d5a1eb9e75a196c
Parents: 06d483c
Author: Jonathan Eagles <je...@yahoo-inc.com>
Authored: Tue May 31 14:39:51 2016 -0500
Committer: Jonathan Eagles <je...@yahoo-inc.com>
Committed: Tue May 31 14:42:52 2016 -0500

----------------------------------------------------------------------
 CHANGES.txt                                                        | 2 ++
 tez-ui/src/main/webapp/app/scripts/controllers/dag_controller.js   | 1 -
 .../src/main/webapp/app/scripts/controllers/vertex_controller.js   | 1 -
 3 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/c9c6c920/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 949a047..fc2006b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES
 
 ALL CHANGES:
 
+  TEZ-3278. Hide Swimlane from Tez UI
   TEZ-3280. LOG MRInputHelpers split generation message as INFO
   TEZ-909.  Provide support for application tags
   TEZ-2769. TEZ-UI Hive SQL is only displayed to line 11
@@ -457,6 +458,7 @@ Release 0.7.2: Unreleased
 INCOMPATIBLE CHANGES
 
 ALL CHANGES:
+  TEZ-3278. Hide Swimlane from Tez UI
   TEZ-2769. TEZ-UI Hive SQL is only displayed to line 11
   TEZ-3280. LOG MRInputHelpers split generation message as INFO
   TEZ-3257. Fix flaky test TestUnorderedPartitionedKVWriter.

http://git-wip-us.apache.org/repos/asf/tez/blob/c9c6c920/tez-ui/src/main/webapp/app/scripts/controllers/dag_controller.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/scripts/controllers/dag_controller.js b/tez-ui/src/main/webapp/app/scripts/controllers/dag_controller.js
index ddf6221..f50504c 100644
--- a/tez-ui/src/main/webapp/app/scripts/controllers/dag_controller.js
+++ b/tez-ui/src/main/webapp/app/scripts/controllers/dag_controller.js
@@ -141,7 +141,6 @@ App.DagController = App.PollingController.extend(App.Helpers.DisplayHelper, {
     Ember.Object.create({title: 'All Vertices', linkTo: 'dag.vertices'}),
     Ember.Object.create({title: 'All Tasks', linkTo: 'dag.tasks'}),
     Ember.Object.create({title: 'All TaskAttempts', linkTo: 'dag.taskAttempts'}),
-    Ember.Object.create({title: 'Swimlane', linkTo: 'dag.swimlane'})
   ],
 
 });

http://git-wip-us.apache.org/repos/asf/tez/blob/c9c6c920/tez-ui/src/main/webapp/app/scripts/controllers/vertex_controller.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/scripts/controllers/vertex_controller.js b/tez-ui/src/main/webapp/app/scripts/controllers/vertex_controller.js
index feb4983..e350ef3 100644
--- a/tez-ui/src/main/webapp/app/scripts/controllers/vertex_controller.js
+++ b/tez-ui/src/main/webapp/app/scripts/controllers/vertex_controller.js
@@ -115,7 +115,6 @@ App.VertexController = App.PollingController.extend(App.Helpers.DisplayHelper, A
     Ember.Object.create({title: 'Vertex Counters', linkTo: 'vertex.counters'}),
     Ember.Object.create({title: 'Tasks', linkTo: 'vertex.tasks'}),
     Ember.Object.create({title: 'Task Attempts', linkTo: 'vertex.taskAttempts'}),
-    Ember.Object.create({title: 'Swimlane', linkTo: 'vertex.swimlane'}),
     Ember.Object.create({title: 'Sources & Sinks', linkTo: 'vertex.additionals'}),
   ],
 });