Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Backport API changes to 4.9 #2493

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
chore(deps): go 1.17 compat
  • Loading branch information
a-dsouza committed May 1, 2023
commit d14fa7daa4e958d3db16cca793a87fc52f49dbf6
2 changes: 1 addition & 1 deletion support/globalconfig/globalconfig_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ func TestSecretRefs(t *testing.T) {

func findRefs(sel reflect.Type, prefix, structName string) sets.String {
switch sel.Kind() {
case reflect.Pointer, reflect.Slice, reflect.Map:
case reflect.Ptr, reflect.Slice, reflect.Map:
return findRefs(sel.Elem(), prefix, structName)
case reflect.Struct:
result := sets.NewString()
Expand Down