mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-15 14:14:39 +00:00
update deepcopy function
This commit is contained in:
@@ -831,6 +831,11 @@ func (in *Preconditions) DeepCopyInto(out *Preconditions) {
|
|||||||
*out = new(types.UID)
|
*out = new(types.UID)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.ResourceVersion != nil {
|
||||||
|
in, out := &in.ResourceVersion, &out.ResourceVersion
|
||||||
|
*out = new(string)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user