[Improvement][api]Start the downstream workflow when it is online (#13257)

Start the downstream workflow when it is online
This commit is contained in:
XCL 2022-12-26 11:58:37 +08:00 committed by zhuangchong
parent ce5fda89ca
commit 5f888c4c1f
2 changed files with 2 additions and 1 deletions

View File

@ -988,7 +988,7 @@ public class ExecutorServiceImpl extends BaseServiceImpl implements ExecutorServ
}
/**
* get complement dependent process definition list
* get complement dependent online process definition list
*/
private List<DependentProcessDefinition> getComplementDependentDefinitionList(long processDefinitionCode,
CycleEnum processDefinitionCycle,

View File

@ -161,6 +161,7 @@
AND a.task_params LIKE concat('%', #{code}, '%')
</if>
AND a.task_type = 'DEPENDENT'
AND c.release_state = 1
</select>
<select id="queryTaskSubProcessDepOnProcess" resultType="org.apache.dolphinscheduler.dao.entity.TaskMainInfo">