I have deployed a restartable job in Spring XD, and it is FAILED due to some errors. But I am not able to restart the job from the admin console. Did I miss any configurations?
My job configuration looks as below.
<batch:job id="testjob" xmlns="http://www.springframework.org/schema/batch" restartable = "true">
<batch:step id="taskOne" next="taskTwo">
<batch:tasklet ref="task1" />
</batch:step>
<batch:step id="taskTwo" next="taskThree">
<batch:tasklet ref="task2" />
</batch:step>
<batch:step id="taskThree">
<batch:tasklet ref="task3" />
</batch:step>
</batch:job>