未验证 提交 d0366082 编写于 作者: J JinYong Li 提交者: GitHub

[Fix-12167][MasterServer] The retry task was submitted in advance (#12291)

Co-authored-by: NJinyLeeChina <jiny.li@foxmail.com>
上级 7db0ad56
......@@ -1464,6 +1464,10 @@ public class WorkflowExecuteThread implements Runnable {
submitPostNode(Long.toString(task.getTaskCode()));
continue;
}
if (retryTask != null && !retryTask.retryTaskIntervalOverTime()) {
logger.info("task name: {} retry waiting has not exceeded the interval time, and skip submission this time, task id:{}", task.getName(), task.getId());
continue;
}
}
//init varPool only this task is the first time running
if (task.isFirstRun()) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册