Return-Path: X-Original-To: apmail-incubator-ambari-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ambari-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4489D10D00 for ; Mon, 30 Sep 2013 17:41:37 +0000 (UTC) Received: (qmail 96659 invoked by uid 500); 30 Sep 2013 17:41:36 -0000 Delivered-To: apmail-incubator-ambari-commits-archive@incubator.apache.org Received: (qmail 96601 invoked by uid 500); 30 Sep 2013 17:41:35 -0000 Mailing-List: contact ambari-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@incubator.apache.org Delivered-To: mailing list ambari-commits@incubator.apache.org Received: (qmail 96589 invoked by uid 99); 30 Sep 2013 17:41:35 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Sep 2013 17:41:35 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 243AE833376; Mon, 30 Sep 2013 17:41:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yusaku@apache.org To: ambari-commits@incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Revert "AMBARI-3387 Allow the user to add HBase Master from the Host Details page (ababiichuk)" Date: Mon, 30 Sep 2013 17:41:35 +0000 (UTC) Updated Branches: refs/heads/branch-1.4.1 c8e9377a0 -> fcc958697 Revert "AMBARI-3387 Allow the user to add HBase Master from the Host Details page (ababiichuk)" This reverts commit 8c48ca0552c19871a9ec0eed201ba5c8114e501a. Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/fcc95869 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/fcc95869 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/fcc95869 Branch: refs/heads/branch-1.4.1 Commit: fcc95869752d59e8b4bf5a989631c11f310ffc35 Parents: c8e9377 Author: Yusaku Sako Authored: Mon Sep 30 10:41:16 2013 -0700 Committer: Yusaku Sako Committed: Mon Sep 30 10:41:16 2013 -0700 ---------------------------------------------------------------------- ambari-web/app/views/main/host/summary.js | 7 ------- 1 file changed, 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/fcc95869/ambari-web/app/views/main/host/summary.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/host/summary.js b/ambari-web/app/views/main/host/summary.js index 1826519..4cceddb 100644 --- a/ambari-web/app/views/main/host/summary.js +++ b/ambari-web/app/views/main/host/summary.js @@ -198,7 +198,6 @@ App.MainHostSummaryView = Em.View.extend({ var regionServerExists = false; var zookeeperServerExists = false; var nodeManagerExists = false; - var hbaseMasterExists = false; var installableClients = this.get('installableClientComponents'); @@ -219,9 +218,6 @@ App.MainHostSummaryView = Em.View.extend({ case 'NODEMANAGER': nodeManagerExists = true; break; - case 'HBASE_MASTER': - hbaseMasterExists = true; - break; } }, this); @@ -234,9 +230,6 @@ App.MainHostSummaryView = Em.View.extend({ if (!regionServerExists && services.findProperty('serviceName', 'HBASE')) { components.pushObject(this.addableComponentObject.create({ 'componentName': 'HBASE_REGIONSERVER' })); } - if (!hbaseMasterExists && services.findProperty('serviceName', 'HBASE')) { - components.pushObject(this.addableComponentObject.create({ 'componentName': 'HBASE_MASTER' })); - } if (!zookeeperServerExists && services.findProperty('serviceName', 'ZOOKEEPER')) { components.pushObject(this.addableComponentObject.create({ 'componentName': 'ZOOKEEPER_SERVER' })); }