We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdbc50a commit b03e259Copy full SHA for b03e259
pkg/ingresscache/safetrie.go
@@ -72,7 +72,7 @@ func (st *SafeTrie) Set(path string, function string) error {
72
73
functionNames, err := pathFunctionNames.Add(function)
74
if err != nil {
75
- return errors.Wrapf(err, "failed to set function name to path. funciton: %s, path: %s", function, path)
+ return errors.Wrapf(err, "failed to set function name to path. path: %s, function: %s", path, function)
76
}
77
st.pathTrie.Put(path, functionNames)
78
0 commit comments