#29 Restart Jenkins pod when any seed job has been deleted
- update deep copy
This commit is contained in:
parent
dda0a0075e
commit
5926cf6d66
|
|
@ -312,6 +312,11 @@ func (in *JenkinsStatus) DeepCopyInto(out *JenkinsStatus) {
|
|||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
}
|
||||
if in.CreatedSeedJobs != nil {
|
||||
in, out := &in.CreatedSeedJobs, &out.CreatedSeedJobs
|
||||
*out = make([]string, len(*in))
|
||||
copy(*out, *in)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue