Skip to content

Commit dbe0c49

Browse files
committed
Address review comments
1 parent db79ebf commit dbe0c49

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pkg/epp/requestcontrol/dag.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ func buildDAG(plugins []PrepareDataPlugin) map[string][]string {
5555

5656
// prepareDataGraph builds the dependency graph and returns the plugins ordered in topological order.
5757
// 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.
5859
func prepareDataGraph(plugins []PrepareDataPlugin) (map[string][]string, []PrepareDataPlugin, error) {
5960
dag := buildDAG(plugins)
6061
nameToPlugin := map[string]PrepareDataPlugin{}

0 commit comments

Comments
 (0)