Skip to content

Commit

Permalink
fix: adjust error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dadav committed Sep 2, 2023
1 parent dad5603 commit f0f6809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/util/topsort.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TopSort[R any, I comparable](results []R, identify func(i R) I, dependencie
g = append(g, depNamesToResults[name])
}

return g, errors.New("Circular dependency found")
return g, errors.New("Circular or missing dependency found")
}

for name := range readySet.Iter() {
Expand Down

0 comments on commit f0f6809

Please sign in to comment.