add deepcopy changes
This commit is contained in:
parent
917d421ac7
commit
a04c9be0af
|
|
@ -614,11 +614,6 @@ func (in *PostgresSpec) DeepCopyInto(out *PostgresSpec) {
|
||||||
*out = make([]string, len(*in))
|
*out = make([]string, len(*in))
|
||||||
copy(*out, *in)
|
copy(*out, *in)
|
||||||
}
|
}
|
||||||
if in.EnableNamespacedSecret != nil {
|
|
||||||
in, out := &in.EnableNamespacedSecret, &out.EnableNamespacedSecret
|
|
||||||
*out = new(bool)
|
|
||||||
**out = **in
|
|
||||||
}
|
|
||||||
if in.Users != nil {
|
if in.Users != nil {
|
||||||
in, out := &in.Users, &out.Users
|
in, out := &in.Users, &out.Users
|
||||||
*out = make(map[string]UserFlags, len(*in))
|
*out = make(map[string]UserFlags, len(*in))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue