Switch debugger configuration fields to pointers

Kubernetes-commit: 81efef4695a0f80100a55c4ed29c907aa53803e4
This commit is contained in:
Jordan Liggitt 2019-11-04 13:18:51 -05:00 committed by Kubernetes Publisher
parent 12e5518924
commit bd4e323589
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ func (in *GenericControllerManagerConfiguration) DeepCopyInto(out *GenericContro
*out = make([]string, len(*in))
copy(*out, *in)
}
out.Debugging = in.Debugging
in.Debugging.DeepCopyInto(&out.Debugging)
return
}