Roll back the logic of execution complement failure stop (#13723)
This commit is contained in:
parent
33e345fe99
commit
e6f727b16e
|
|
@ -553,9 +553,9 @@ public class WorkflowExecuteThread implements Runnable {
|
|||
return true;
|
||||
}
|
||||
int index = complementListDate.indexOf(scheduleDate);
|
||||
if (index >= complementListDate.size() - 1) {
|
||||
if (index >= complementListDate.size() - 1 || !processInstance.getState().typeIsSuccess()) {
|
||||
logger.info("process complement end. process id:{}", processInstance.getId());
|
||||
// complement data ends
|
||||
// complement data ends || no success
|
||||
return true;
|
||||
}
|
||||
logger.info("process complement continue. process id:{}, schedule time:{} complementListDate:{}",
|
||||
|
|
|
|||
Loading…
Reference in New Issue