Browse Source

AMBARI-7216. Mapreduce is recommending a value that isn't set. (akovalenko)

Aleksandr Kovalenko 10 years ago
parent
commit
0e3fd88b85
1 changed files with 2 additions and 1 deletions
  1. 2 1
      ambari-web/app/models/stack_service.js

+ 2 - 1
ambari-web/app/models/stack_service.js

@@ -259,7 +259,8 @@ App.StackService.configCategories = function () {
       break;
     case 'MAPREDUCE2':
       serviceConfigCategories.pushObjects([
-        App.ServiceConfigCategory.create({ name: 'HISTORYSERVER', displayName: 'History Server'})
+        App.ServiceConfigCategory.create({ name: 'HISTORYSERVER', displayName: 'History Server'}),
+        App.ServiceConfigCategory.create({ name: 'General', displayName: 'General'})
       ]);
       break;
     case 'HIVE':