You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by pr...@apache.org on 2015/05/07 14:22:22 UTC

tez git commit: TEZ-2423. Tez UI: Remove Attempt Index column from task->attempts page (Sreenath Somarajapuram via pramachandran)

Repository: tez
Updated Branches:
  refs/heads/master 70cd396d2 -> a382324c2


TEZ-2423. Tez UI: Remove Attempt Index column from task->attempts page (Sreenath Somarajapuram via pramachandran)


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

Branch: refs/heads/master
Commit: a382324c24a30ef7b632ca1f003a90873ac802e3
Parents: 70cd396
Author: Prakash Ramachandran <pr...@hortonworks.com>
Authored: Thu May 7 17:52:00 2015 +0530
Committer: Prakash Ramachandran <pr...@hortonworks.com>
Committed: Thu May 7 17:52:00 2015 +0530

----------------------------------------------------------------------
 CHANGES.txt                                          |  1 +
 .../controllers/task_task_attempts_controller.js     | 15 ---------------
 2 files changed, 1 insertion(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/a382324c/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index c3d48b6..8de61b0 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -20,6 +20,7 @@ INCOMPATIBLE CHANGES
     Default max limit increased. Should not affect existing users.
 
 ALL CHANGES:
+  TEZ-2423. Tez UI: Remove Attempt Index column from task->attempts page
   TEZ-2416. Tez UI: Make tooltips display faster.
   TEZ-2404. Handle DataMovementEvent before its TaskAttemptCompletedEvent
   TEZ-2424. Bump up max counter group name length limit to account for per_io counters.

http://git-wip-us.apache.org/repos/asf/tez/blob/a382324c/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js
----------------------------------------------------------------------
diff --git a/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js b/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js
index c5c9eea..d211479 100644
--- a/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js
+++ b/tez-ui/src/main/webapp/app/scripts/controllers/task_task_attempts_controller.js
@@ -62,21 +62,6 @@ App.TaskAttemptsController = App.TablePageController.extend(App.AutoCounterColum
     var that = this;
     return [
       {
-        id: 'id',
-        headerCellName: 'Attempt Index',
-        templateName: 'components/basic-table/linked-cell',
-        contentPath: 'id',
-        getCellContent: function (row) {
-          var id = row.get('id'),
-              idPrefix = 'attempt_%@_'.fmt(row.get('dagID').substr(4));
-          return {
-            linkTo: 'taskAttempt',
-            entityId: id,
-            displayText: id.indexOf(idPrefix) == 0 ? id.substr(idPrefix.length) : id
-          };
-        }
-      },
-      {
         id: 'attemptNo',
         headerCellName: 'Attempt No',
         templateName: 'components/basic-table/linked-cell',