Changed "name" attribute of <step> to "id"
This commit is contained in:
@@ -312,9 +312,9 @@
|
||||
|
||||
<programlisting>
|
||||
<job id="footballJob">
|
||||
<step name="playerload" next="gameLoad"/>
|
||||
<step name="gameLoad" next="playerSummarization"/>
|
||||
<step name="playerSummarization"/>
|
||||
<step id="playerload" next="gameLoad"/>
|
||||
<step id="gameLoad" next="playerSummarization"/>
|
||||
<step id="playerSummarization"/>
|
||||
</job>
|
||||
|
||||
</programlisting>
|
||||
@@ -392,12 +392,12 @@
|
||||
|
||||
<programlisting>
|
||||
<job id="job">
|
||||
<step name="stepA">
|
||||
<step id="stepA">
|
||||
<next on="FAILED" to="stepB" />
|
||||
<next on="*" to="stepC" />
|
||||
</step>
|
||||
<step name="stepB" next="stepC" />
|
||||
<step name="stepC" />
|
||||
<step id="stepB" next="stepC" />
|
||||
<step id="stepC" />
|
||||
</job>
|
||||
|
||||
</programlisting>
|
||||
|
||||
Reference in New Issue
Block a user