未验证 提交 94f6c5c2 编写于 作者: K KyoYang 提交者: GitHub

fix complement data retry bug; issues: [Bug] [Master] A bug on task retry mechanism #6613 (#6843)

Co-authored-by: Nyangqiyu <yangqiyu@deepexi.com>
上级 880c1d28
......@@ -1007,7 +1007,7 @@ public class WorkflowExecuteThread implements Runnable {
return true;
}
if (processInstance.getFailureStrategy() == FailureStrategy.CONTINUE) {
return readyToSubmitTaskQueue.size() == 0 || activeTaskProcessorMaps.size() == 0;
return readyToSubmitTaskQueue.size() == 0 && activeTaskProcessorMaps.size() == 0;
}
}
return false;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册