Skip to content

Commit f96b242

Browse files
committed
Roll back the logic of execution complement failure stop
1 parent 33e345f commit f96b242

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dolphinscheduler-server/src/main/java/org/apache/dolphinscheduler/server/master/runner/WorkflowExecuteThread.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,9 +553,9 @@ private boolean processComplementData() {
553553
return true;
554554
}
555555
int index = complementListDate.indexOf(scheduleDate);
556-
if (index >= complementListDate.size() - 1) {
556+
if (index >= complementListDate.size() - 1 || !processInstance.getState().typeIsSuccess()) {
557557
logger.info("process complement end. process id:{}", processInstance.getId());
558-
// complement data ends
558+
// complement data ends || no success
559559
return true;
560560
}
561561
logger.info("process complement continue. process id:{}, schedule time:{} complementListDate:{}",

0 commit comments

Comments
 (0)