fix: [workflow] Fixed in walkGraph

pull/8530/head
Sami Mokaddem 2022-07-29 10:24:47 +02:00
parent d069d72f35
commit 60ceed59fa
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -552,7 +552,7 @@ class Workflow extends AppModel
}
} else if (!empty($moduleClass->blocking)) {
return false; // Node stopped execution for any path. Not sure if this is relevant since multiple connections from the same output is not allowed anymore
} else if ($graphNode['path_type'] == $this->workflowGraphTool::PATH_TYPE_NON_BLOCKING) {
} else if ($graphNode['path_type'] == GraphWalker::PATH_TYPE_NON_BLOCKING) {
$preventExecutionForPaths[] = $graphNode['path_list']; // Paths down the chain for this path should not be executed
}
}