You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by al...@apache.org on 2014/02/26 20:22:12 UTC

git commit: AMBARI-4853. Job details UI keeps flashing every 6s (fix for graph) (alexantonenko)

Repository: ambari
Updated Branches:
  refs/heads/trunk dc4709ead -> 13affcb86


AMBARI-4853. Job details UI keeps flashing every 6s (fix for graph) (alexantonenko)


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

Branch: refs/heads/trunk
Commit: 13affcb86d55f847c55074d9d1016da2bcb6b133
Parents: dc4709e
Author: Alex Antonenko <hi...@gmail.com>
Authored: Wed Feb 26 21:15:45 2014 +0200
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Wed Feb 26 21:16:01 2014 +0200

----------------------------------------------------------------------
 .../views/main/jobs/hive_job_details_tez_dag_view.js | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/13affcb8/ambari-web/app/views/main/jobs/hive_job_details_tez_dag_view.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/views/main/jobs/hive_job_details_tez_dag_view.js b/ambari-web/app/views/main/jobs/hive_job_details_tez_dag_view.js
index 14a8869..9887f68 100644
--- a/ambari-web/app/views/main/jobs/hive_job_details_tez_dag_view.js
+++ b/ambari-web/app/views/main/jobs/hive_job_details_tez_dag_view.js
@@ -172,20 +172,7 @@ App.MainHiveJobDetailsTezDagView = Em.View.extend({
    */
   vertexMetricsUpdated : function() {
     var dagVisualModel = this.get('dagVisualModel');
-    dagVisualModel.minMetrics = {
-      input : 0,
-      output : 0,
-      recordsRead : 0,
-      recordsWrite : 0,
-      tezTasks : 0
-    };
-    dagVisualModel.maxMetrics = {
-      input : 0,
-      output : 0,
-      recordsRead : 0,
-      recordsWrite : 0,
-      tezTasks : 0
-    };
+
     if (dagVisualModel.nodes) {
       dagVisualModel.nodes.forEach(function(node) {
         var vertex = App.TezDagVertex.find(node.id);