You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2013/05/07 01:50:46 UTC

svn commit: r1479727 - in /incubator/ambari/trunk: CHANGES.txt ambari-server/src/main/resources/stacks/HDP/1.3.0/services/HDFS/configuration/core-site.xml ambari-web/app/data/config_properties.js ambari-web/app/models/service.js

Author: jaimin
Date: Mon May  6 23:50:44 2013
New Revision: 1479727

URL: http://svn.apache.org/r1479727
Log:
AMBARI-2082. Oozie service check fails. (jaimin)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-server/src/main/resources/stacks/HDP/1.3.0/services/HDFS/configuration/core-site.xml
    incubator/ambari/trunk/ambari-web/app/data/config_properties.js
    incubator/ambari/trunk/ambari-web/app/models/service.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1479727&r1=1479726&r2=1479727&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Mon May  6 23:50:44 2013
@@ -828,6 +828,8 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2082. Oozie service check fails. (jaimin)
+
  AMBARI-2081. changeUid.sh failing during installation. (swagle)
 
  AMBARI-2079. Can't change service configuration if heartbeat lost from

Modified: incubator/ambari/trunk/ambari-server/src/main/resources/stacks/HDP/1.3.0/services/HDFS/configuration/core-site.xml
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-server/src/main/resources/stacks/HDP/1.3.0/services/HDFS/configuration/core-site.xml?rev=1479727&r1=1479726&r2=1479727&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-server/src/main/resources/stacks/HDP/1.3.0/services/HDFS/configuration/core-site.xml (original)
+++ incubator/ambari/trunk/ambari-server/src/main/resources/stacks/HDP/1.3.0/services/HDFS/configuration/core-site.xml Mon May  6 23:50:44 2013
@@ -40,18 +40,18 @@
 
   <property>
     <name>io.compression.codecs</name>
-    <value>org.apache.hadoop.io.compress.GzipCodec,org.apache.hadoop.io.compress.DefaultCodec,org.apache.hadoop.io.compress.SnappyCodec</value>
+    <value>org.apache.hadoop.io.compress.GzipCodec,org.apache.hadoop.io.compress.DefaultCodec,com.hadoop.compression.lzo.LzoCodec,com.hadoop.compression.lzo.LzopCodec,org.apache.hadoop.io.compress.SnappyCodec</value>
     <description>A list of the compression codec classes that can be used
                  for compression/decompression.</description>
   </property>
 
-  <!--
+
   <property>
     <name>io.compression.codec.lzo.class</name>
     <value>com.hadoop.compression.lzo.LzoCodec</value>
     <description>The implementation for lzo codec.</description>
   </property>
-  -->
+
 
 <!-- file system properties -->
 

Modified: incubator/ambari/trunk/ambari-web/app/data/config_properties.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/data/config_properties.js?rev=1479727&r1=1479726&r2=1479727&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/data/config_properties.js (original)
+++ incubator/ambari/trunk/ambari-web/app/data/config_properties.js Mon May  6 23:50:44 2013
@@ -769,10 +769,10 @@ module.exports =
       "name": "lzo_enabled",
       "displayName": "LZO compression",
       "description": "LZO compression enabled",
-      "defaultValue": false,
+      "defaultValue": true,
       "displayType": "checkbox",
       "isOverridable": false,
-      "isVisible": true,
+      "isVisible": false,
       "domain": "global",
       "serviceName": "MAPREDUCE",
       "index": 11
@@ -786,7 +786,7 @@ module.exports =
       "isReconfigurable": false,
       "displayType": "checkbox",
       "isOverridable": false,
-      "isVisible": true,
+      "isVisible": false,
       "domain": "global",
       "serviceName": "MAPREDUCE",
       "index": 12

Modified: incubator/ambari/trunk/ambari-web/app/models/service.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/models/service.js?rev=1479727&r1=1479726&r2=1479727&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/models/service.js (original)
+++ incubator/ambari/trunk/ambari-web/app/models/service.js Mon May  6 23:50:44 2013
@@ -90,7 +90,7 @@ App.Service = DS.Model.extend({
     var flag = true;
     var runningHCs = [];
     var unknownHCs = [];
-    debugger;
+
     components.forEach(function (_component) {
       if (
         _component.get('workStatus') !== App.HostComponentStatus.stopped &&