<?xml version="1.0" encoding="UTF-8"?>
<schedulerChainAction title="Outer" logTimings="false"
timeOut="0" propagateFailure="true">
<actions>
<schedulerExecAction
command="cmd /c echo "outer before""
waitUntilTerminated="true" ignoreError="false" />
<schedulerChainAction
title="Nested" logTimings="false" timeOut="2"
propagateFailure="false">
<actions>
<schedulerExecAction
command="cmd /c echo "nested before""
waitUntilTerminated="true" ignoreError="false" />
<schedulerExecAction
command="cmd /c sleep 3"
waitUntilTerminated="true" ignoreError="false" />
<schedulerExecAction
command="cmd /c echo "nested after""
waitUntilTerminated="true" ignoreError="false" />
</actions>
<failureAction>
<schedulerExecAction
command="cmd /c echo "Fail""
waitUntilTerminated="true" ignoreError="false" />
</failureAction>
</schedulerChainAction>
<schedulerExecAction
command="cmd /c echo "outer after""
waitUntilTerminated="true" ignoreError="false" />
</actions>
</schedulerChainAction>
ERRORS/WARNINGS:
Chain action "Nested" failure due to timeout
MESSAGES:
"outer before"
Executed process: cmd /c echo "outer before"
"nested before"
Executed process: cmd /c echo "nested before"
Executing chain action "Nested" failure action
"Fail"
Executed process: cmd /c echo "Fail"
"outer after"
Executed process: cmd /c echo "outer after"
Executed chain: "Outer"
action.xml | 1K |
It looks like you're new here. If you want to get involved, click one of these buttons!