Repository: oozie
Updated Branches:
  refs/heads/master aebf775a3 -> 1600045ff


Adding missing file for OOZIE-2441


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/1600045f
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/1600045f
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/1600045f

Branch: refs/heads/master
Commit: 1600045ffea3b9f900d77da40e7c1f5b0b0a8ed3
Parents: aebf775
Author: Robert Kanter <[email protected]>
Authored: Tue Jan 19 17:17:50 2016 -0800
Committer: Robert Kanter <[email protected]>
Committed: Tue Jan 19 17:17:50 2016 -0800

----------------------------------------------------------------------
 ...f-schema-subworkflow-propagate-no-global.xml | 36 ++++++++++++++++++++
 1 file changed, 36 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/1600045f/core/src/test/resources/wf-schema-subworkflow-propagate-no-global.xml
----------------------------------------------------------------------
diff --git 
a/core/src/test/resources/wf-schema-subworkflow-propagate-no-global.xml 
b/core/src/test/resources/wf-schema-subworkflow-propagate-no-global.xml
new file mode 100644
index 0000000..d61fc2c
--- /dev/null
+++ b/core/src/test/resources/wf-schema-subworkflow-propagate-no-global.xml
@@ -0,0 +1,36 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<workflow-app xmlns="uri:oozie:workflow:0.4" name="test-wf">
+
+    <start to="a"/>
+
+    <action name="a">
+            <sub-workflow>
+                <app-path>/tmp/foo/</app-path>
+                <propagate-configuration/>
+            </sub-workflow>
+        <ok to="c"/>
+        <error to="b"/>
+    </action>
+
+    <kill name="b">
+        <message>fail</message>
+    </kill>
+
+    <end name="c"/>
+</workflow-app>

Reply via email to