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/08/14 01:23:13 UTC

svn commit: r1372664 - in /incubator/oozie/trunk: client/src/main/resources/oozie-workflow-0.4.xsd release-log.txt

Author: tucu
Date: Mon Aug 13 23:23:13 2012
New Revision: 1372664

URL: http://svn.apache.org/viewvc?rev=1372664&view=rev
Log:
OOZIE-951 Global section should make JT and NN optional (bcry via tucu)

Modified:
    incubator/oozie/trunk/client/src/main/resources/oozie-workflow-0.4.xsd
    incubator/oozie/trunk/release-log.txt

Modified: incubator/oozie/trunk/client/src/main/resources/oozie-workflow-0.4.xsd
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/client/src/main/resources/oozie-workflow-0.4.xsd?rev=1372664&r1=1372663&r2=1372664&view=diff
==============================================================================
--- incubator/oozie/trunk/client/src/main/resources/oozie-workflow-0.4.xsd (original)
+++ incubator/oozie/trunk/client/src/main/resources/oozie-workflow-0.4.xsd Mon Aug 13 23:23:13 2012
@@ -62,8 +62,8 @@
 
     <xs:complexType name="GLOBAL">
     	<xs:sequence>
-            <xs:element name="job-tracker" type="xs:string" minOccurs="1" maxOccurs="1"/>
-            <xs:element name="name-node" type="xs:string" minOccurs="1" maxOccurs="1"/>
+            <xs:element name="job-tracker" type="xs:string" minOccurs="0" maxOccurs="1"/>
+            <xs:element name="name-node" type="xs:string" minOccurs="0" maxOccurs="1"/>
             <xs:element name="configuration" type="workflow:CONFIGURATION" minOccurs="0" maxOccurs="1"/>
         </xs:sequence>
     </xs:complexType>

Modified: incubator/oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1372664&r1=1372663&r2=1372664&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Mon Aug 13 23:23:13 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.3.0 release (trunk - unreleased)
 
+OOZIE-951 Global section should make JT and NN optional (bcry via tucu)
 OOZIE-948 Add support for Oozie coordinator to work in an UTC offset (tucu)
 OOZIE-926 handling of global configuration is not correct (bcyr via tucu)
 OOZIE-921 Changes in global section for the Name Node in FS action (bcyr via virag)