Added way more robust swarm system with caching utilization at scale

This commit is contained in:
frikky
2023-03-31 02:14:04 +02:00
parent f720fcb91e
commit 093df3d5fb
9 changed files with 24 additions and 12 deletions
+1 -1
View File
@@ -2118,7 +2118,7 @@ func main() {
}
// Checks if a subflow is child of the startnode, as sub-subflows aren't working properly yet
childNodes := shuffle.FindChildNodes(workflowExecution, workflowExecution.Start)
childNodes := shuffle.FindChildNodes(workflowExecution, workflowExecution.Start, []string{}, []string{})
log.Printf("[DEBUG] Looking for subflow in %#v to check execution pattern as child of %s", childNodes, workflowExecution.Start)
subflowFound := false
for _, childNode := range childNodes {