Repository: ambari Updated Branches: refs/heads/branch-2.0.maint 84a7c5d27 -> c33342c80
AMBARI-10256. Unable to delete HBase Master (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c33342c8 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c33342c8 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c33342c8 Branch: refs/heads/branch-2.0.maint Commit: c33342c8021a38d0b8d30a1a4b9e55730530d425 Parents: 84a7c5d Author: Alex Antonenko <[email protected]> Authored: Fri Mar 27 22:43:17 2015 +0200 Committer: Yusaku Sako <[email protected]> Committed: Fri May 1 17:31:37 2015 -0700 ---------------------------------------------------------------------- ambari-web/app/models/stack_service_component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/c33342c8/ambari-web/app/models/stack_service_component.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/models/stack_service_component.js b/ambari-web/app/models/stack_service_component.js index 1867cc1..e47787a 100644 --- a/ambari-web/app/models/stack_service_component.js +++ b/ambari-web/app/models/stack_service_component.js @@ -102,7 +102,7 @@ App.StackServiceComponent = DS.Model.extend({ /** @property {Boolean} isDeletable - component supports delete action **/ isDeletable: function() { - var ignored = ['HBASE_MASTER']; + var ignored = []; return this.get('isAddableToHost') && !ignored.contains(this.get('componentName')); }.property('componentName'),
