Просмотр исходного кода

AMBARI-10256. Unable to delete HBase Master (alexantonenko)

Alex Antonenko 10 лет назад
Родитель
Сommit
62d6c1cb2b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      ambari-web/app/models/stack_service_component.js

+ 1 - 1
ambari-web/app/models/stack_service_component.js

@@ -102,7 +102,7 @@ App.StackServiceComponent = DS.Model.extend({
 
 
   /** @property {Boolean} isDeletable - component supports delete action **/
   /** @property {Boolean} isDeletable - component supports delete action **/
   isDeletable: function() {
   isDeletable: function() {
-    var ignored = ['HBASE_MASTER'];
+    var ignored = [];
     return this.get('isAddableToHost') && !ignored.contains(this.get('componentName'));
     return this.get('isAddableToHost') && !ignored.contains(this.get('componentName'));
   }.property('componentName'),
   }.property('componentName'),