Skip to content
Snippets Groups Projects
Commit ef6c520f authored by tabassm2's avatar tabassm2
Browse files

Merge branch 'schedulerNameProfile' into 'master'

Fix reference

See merge request !3
parents edfd9a26 a36cb154
No related branches found
No related tags found
1 merge request!3Fix reference
Pipeline #197823 failed
......@@ -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