#71: Added more skipped branch checks. Need to fix visited in worker

This commit is contained in:
frikky
2020-06-20 11:43:22 +02:00
parent 8f40fa01e9
commit c3d3258ed4
4 changed files with 81 additions and 3 deletions
+1 -1
View File
@@ -502,9 +502,9 @@ func handleExecution(client *http.Client, req *http.Request, workflowExecution W
nextActions = []string{startAction}
} else {
for _, item := range workflowExecution.Results {
// FIXME: Check whether the item should be visited or not
visited = append(visited, item.Action.ID)
nextActions = children[item.Action.ID]
// FIXME: check if nextActions items are finished?
}
}