Switch debugger configuration fields to pointers
Kubernetes-commit: 81efef4695a0f80100a55c4ed29c907aa53803e4
This commit is contained in:
parent
12e5518924
commit
bd4e323589
|
|
@ -194,7 +194,7 @@ func (in *GenericControllerManagerConfiguration) DeepCopyInto(out *GenericContro
|
||||||
*out = make([]string, len(*in))
|
*out = make([]string, len(*in))
|
||||||
copy(*out, *in)
|
copy(*out, *in)
|
||||||
}
|
}
|
||||||
out.Debugging = in.Debugging
|
in.Debugging.DeepCopyInto(&out.Debugging)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue