core: fix typo msg used when job ID/name contains a null char.

This commit is contained in:
James Rasell 2020-12-04 09:49:31 +01:00
parent b0ac0a1b8e
commit fd53963afb
No known key found for this signature in database
GPG Key ID: AA7D460F5C8377AA
1 changed files with 2 additions and 2 deletions

View File

@ -4046,12 +4046,12 @@ func (j *Job) Validate() error {
} else if strings.Contains(j.ID, " ") {
mErr.Errors = append(mErr.Errors, errors.New("Job ID contains a space"))
} else if strings.Contains(j.ID, "\000") {
mErr.Errors = append(mErr.Errors, errors.New("Job ID contains a null chararacter"))
mErr.Errors = append(mErr.Errors, errors.New("Job ID contains a null character"))
}
if j.Name == "" {
mErr.Errors = append(mErr.Errors, errors.New("Missing job name"))
} else if strings.Contains(j.Name, "\000") {
mErr.Errors = append(mErr.Errors, errors.New("Job Name contains a null chararacter"))
mErr.Errors = append(mErr.Errors, errors.New("Job Name contains a null character"))
}
if j.Namespace == "" {
mErr.Errors = append(mErr.Errors, errors.New("Job must be in a namespace"))