Skip to content

Commit e4926e2

Browse files
authored
Merge pull request kubernetes#85421 from terrytangyuan/patch-1
Fix grammar: have -> has
2 parents f10de54 + dd308ca commit e4926e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/controller/job/job_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ func (jm *JobController) syncJob(key string) (bool, error) {
485485
job.Status.StartTime = &now
486486
// enqueue a sync to check if job past ActiveDeadlineSeconds
487487
if job.Spec.ActiveDeadlineSeconds != nil {
488-
klog.V(4).Infof("Job %s have ActiveDeadlineSeconds will sync after %d seconds",
488+
klog.V(4).Infof("Job %s has ActiveDeadlineSeconds will sync after %d seconds",
489489
key, *job.Spec.ActiveDeadlineSeconds)
490490
jm.queue.AddAfter(key, time.Duration(*job.Spec.ActiveDeadlineSeconds)*time.Second)
491491
}

0 commit comments

Comments
 (0)