We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db79ebf commit dbe0c49Copy full SHA for dbe0c49
pkg/epp/requestcontrol/dag.go
@@ -55,6 +55,7 @@ func buildDAG(plugins []PrepareDataPlugin) map[string][]string {
55
56
// prepareDataGraph builds the dependency graph and returns the plugins ordered in topological order.
57
// If there is a cycle, it returns an error.
58
+// NOTE: The DAG is presently used for testing. In future, we may use it for executing the plugins in parallel.
59
func prepareDataGraph(plugins []PrepareDataPlugin) (map[string][]string, []PrepareDataPlugin, error) {
60
dag := buildDAG(plugins)
61
nameToPlugin := map[string]PrepareDataPlugin{}
0 commit comments