You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by sr...@apache.org on 2013/07/27 14:25:58 UTC

git commit: FALCON-65 The identifier regex for oozie bundle, coordinator, workflow pattern is incorrect. (Contributed by Suhas Vasu)

Updated Branches:
  refs/heads/master 0e1e578c4 -> 027918ad6


FALCON-65 The identifier regex for oozie bundle,coordinator, workflow pattern is incorrect. (Contributed by Suhas Vasu)


Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/027918ad
Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/027918ad
Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/027918ad

Branch: refs/heads/master
Commit: 027918ad6e4d82f29b7047b8920ef922cf0f1d53
Parents: 0e1e578
Author: srikanth.sundarrajan <sr...@inmobi.com>
Authored: Sat Jul 27 17:38:16 2013 +0530
Committer: srikanth.sundarrajan <sr...@inmobi.com>
Committed: Sat Jul 27 17:38:16 2013 +0530

----------------------------------------------------------------------
 CHANGES.txt                                        | 2 ++
 oozie/src/main/resources/oozie-bundle-0.1.xsd      | 2 +-
 oozie/src/main/resources/oozie-coordinator-0.3.xsd | 2 +-
 oozie/src/main/resources/oozie-workflow-0.3.xsd    | 2 +-
 4 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/027918ad/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index c8f38c8..51b4174 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -11,6 +11,8 @@ Trunk (Unreleased)
   OPTIMIZATIONS
 
   BUG FIXES
+    FALCON-65 The identifier regex for oozie bundle,coordinator, workflow 
+    pattern is incorrect. (Suhas V via Srikanth Sundarrajan)
 
 Release Version: 0.3
 

http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/027918ad/oozie/src/main/resources/oozie-bundle-0.1.xsd
----------------------------------------------------------------------
diff --git a/oozie/src/main/resources/oozie-bundle-0.1.xsd b/oozie/src/main/resources/oozie-bundle-0.1.xsd
index 41534b3..671e1ad 100644
--- a/oozie/src/main/resources/oozie-bundle-0.1.xsd
+++ b/oozie/src/main/resources/oozie-bundle-0.1.xsd
@@ -22,7 +22,7 @@
     <xs:element name="bundle-app" type="bundle:BUNDLE-APP"/>
     <xs:simpleType name="IDENTIFIER">
         <xs:restriction base="xs:string">
-            <xs:pattern value="([a-zA-Z]([\-_a-zA-Z0-9])*){1,39})"/>
+            <xs:pattern value="([a-zA-Z]([\-_a-zA-Z0-9])*){1,39}"/>
         </xs:restriction>
     </xs:simpleType>
     <xs:complexType name="BUNDLE-APP">

http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/027918ad/oozie/src/main/resources/oozie-coordinator-0.3.xsd
----------------------------------------------------------------------
diff --git a/oozie/src/main/resources/oozie-coordinator-0.3.xsd b/oozie/src/main/resources/oozie-coordinator-0.3.xsd
index 5ad3e63..e593d75 100644
--- a/oozie/src/main/resources/oozie-coordinator-0.3.xsd
+++ b/oozie/src/main/resources/oozie-coordinator-0.3.xsd
@@ -23,7 +23,7 @@
     <xs:element name="datasets" type="coordinator:DATASETS"/>
     <xs:simpleType name="IDENTIFIER">
         <xs:restriction base="xs:string">
-            <xs:pattern value="([a-zA-Z]([\-_a-zA-Z0-9])*){1,39})"/>
+            <xs:pattern value="([a-zA-Z]([\-_a-zA-Z0-9])*){1,39}"/>
         </xs:restriction>
     </xs:simpleType>
     <xs:complexType name="COORDINATOR-APP">

http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/027918ad/oozie/src/main/resources/oozie-workflow-0.3.xsd
----------------------------------------------------------------------
diff --git a/oozie/src/main/resources/oozie-workflow-0.3.xsd b/oozie/src/main/resources/oozie-workflow-0.3.xsd
index 8cda3d9..858e34c 100644
--- a/oozie/src/main/resources/oozie-workflow-0.3.xsd
+++ b/oozie/src/main/resources/oozie-workflow-0.3.xsd
@@ -23,7 +23,7 @@
 
     <xs:simpleType name="IDENTIFIER">
         <xs:restriction base="xs:string">
-            <xs:pattern value="([a-zA-Z_]([\-_a-zA-Z0-9])*){1,39})"/>
+            <xs:pattern value="([a-zA-Z_]([\-_a-zA-Z0-9])*){1,39}"/>
         </xs:restriction>
     </xs:simpleType>