lcmarvin
lcmarvin
**Bug description** `JobOperator#stop` can not stop JobExecution correctly in the case that the stop command is executed after step finish but before job finish. JobExecute will ends up with status...
- A running status is STARTING, STARTED, or STOPPING. Resolves #1483
Thank you for taking time to contribute this pull request! You might have already read the [contributor guide][1], but as a reminder, please make sure to: * Sign the [contributor...
Currently a for each loop is used in `MessageChannelPartitionHandler` to poll the partition StepExecutions. ``` for (Iterator stepExecutionIterator = split.iterator(); stepExecutionIterator.hasNext();) { StepExecution curStepExecution = stepExecutionIterator.next(); if (!result.contains(curStepExecution)) { StepExecution...
SpringBatch have many listeners we can use to do some callback, these listeners almost cover all the lifecycle of `JobExecution` and `StepExecution`. But I have a scenario like this: I...
Try to fix #11706