|
|
@ -106,7 +106,7 @@ public class DagHelper { |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// specified start nodes or resume execution
|
|
|
|
// specified start nodes or resume execution
|
|
|
|
for (String startNodeCode : startNodeList) { |
|
|
|
for (String startNodeCode : startNodeList) { |
|
|
|
TaskNode startNode = findNodeByCode(taskNodeList, startNodeCode); |
|
|
|
TaskNode startNode = findNodeByName(taskNodeList, startNodeCode); |
|
|
|
List<TaskNode> childNodeList = new ArrayList<>(); |
|
|
|
List<TaskNode> childNodeList = new ArrayList<>(); |
|
|
|
if (startNode == null) { |
|
|
|
if (startNode == null) { |
|
|
|
logger.error("start node name [{}] is not in task node list [{}] ", |
|
|
|
logger.error("start node name [{}] is not in task node list [{}] ", |
|
|
|