update deepcopy function

pull/564/head
ajatprabha 2019-02-15 04:58:03 +05:30
parent 42f0a36f44
commit 64ecf9de7f
No known key found for this signature in database
GPG Key ID: A7A5C9C2584B721A
1 changed files with 5 additions and 0 deletions

View File

@ -831,6 +831,11 @@ func (in *Preconditions) DeepCopyInto(out *Preconditions) {
*out = new(types.UID)
**out = **in
}
if in.ResourceVersion != nil {
in, out := &in.ResourceVersion, &out.ResourceVersion
*out = new(string)
**out = **in
}
return
}