dont print reschedule policy in error message

This commit is contained in:
Preetha Appan
2018-04-11 17:07:14 -05:00
parent b1b08a536b
commit ae74aa9654

View File

@@ -3303,7 +3303,7 @@ func (tg *TaskGroup) Validate(j *Job) error {
if j.Type == JobTypeSystem {
if tg.ReschedulePolicy != nil {
mErr.Errors = append(mErr.Errors, fmt.Errorf("System jobs should not have a reschedule policy but got %+v", tg.ReschedulePolicy))
mErr.Errors = append(mErr.Errors, fmt.Errorf("System jobs should not have a reschedule policy"))
}
} else {
if tg.ReschedulePolicy != nil {