You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by tu...@apache.org on 2012/03/09 05:51:03 UTC

svn commit: r1298702 - in /incubator/oozie/trunk: core/src/main/conf/hadoop-config.xml release-log.txt

Author: tucu
Date: Fri Mar  9 04:51:03 2012
New Revision: 1298702

URL: http://svn.apache.org/viewvc?rev=1298702&view=rev
Log:
OOZIE-743 HadoopAccessorService hadoop configurations should not use VARs from properties defined oozie-site.xml (tucu)

Modified:
    incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml
    incubator/oozie/trunk/release-log.txt

Modified: incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml?rev=1298702&r1=1298701&r2=1298702&view=diff
==============================================================================
--- incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml (original)
+++ incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml Fri Mar  9 04:51:03 2012
@@ -21,17 +21,17 @@
 
     <property>
         <name>mapreduce.jobtracker.kerberos.principal</name>
-        <value>mapred/_HOST@${localRealm}</value>
+        <value>mapred/_HOST@LOCALREALM</value>
     </property>
 
     <property>
       <name>yarn.resourcemanager.principal</name>
-      <value>yarn/_HOST@${localRealm}</value>
+      <value>yarn/_HOST@LOCALREALM</value>
     </property>
 
     <property>
         <name>dfs.namenode.kerberos.principal</name>
-        <value>hdfs/_HOST@${localRealm}</value>
+        <value>hdfs/_HOST@LOCALREALM</value>
     </property>
 
     <property>

Modified: incubator/oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1298702&r1=1298701&r2=1298702&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Fri Mar  9 04:51:03 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.2.0 release
 
+OOZIE-743 HadoopAccessorService hadoop configurations should not use VARs from properties defined oozie-site.xml (tucu)
 OOZIE-742 getJobInfo for workflows should return workflow external id (Shwetha via Mohammad)
 OOZIE-750 enhance ooziedb tool not to require manual upgrade steps and not to require the -sqlfile option (tucu)
 OOZIE-684 CoordChangeXCommand already used is thrown while executing interrupt commands (Mohamed via Mohammad)