Skip to content
Snippets Groups Projects
Commit a36cb154 authored by ztabassum's avatar ztabassum
Browse files

Fix reference

parent d462e0e0
No related branches found
No related tags found
1 merge request!3Fix reference
Pipeline #197822 canceled
......@@ -253,10 +253,8 @@ func (in *ProfileSpec) DeepCopyInto(out *ProfileSpec) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.SchedulerName != nil {
in, out := &in.SchedulerName, &out.SchedulerName
*out = new(string)
**out = **in
if in.SchedulerName != "" {
out.SchedulerName = in.SchedulerName
}
return
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment