diff --git a/pkg/controller/job/job_controller.go b/pkg/controller/job/job_controller.go index dbf20c6f5ef..4e3a156250f 100644 --- a/pkg/controller/job/job_controller.go +++ b/pkg/controller/job/job_controller.go @@ -485,7 +485,7 @@ func (jm *JobController) syncJob(key string) (bool, error) { job.Status.StartTime = &now // enqueue a sync to check if job past ActiveDeadlineSeconds if job.Spec.ActiveDeadlineSeconds != nil { - klog.V(4).Infof("Job %s have ActiveDeadlineSeconds will sync after %d seconds", + klog.V(4).Infof("Job %s has ActiveDeadlineSeconds will sync after %d seconds", key, *job.Spec.ActiveDeadlineSeconds) jm.queue.AddAfter(key, time.Duration(*job.Spec.ActiveDeadlineSeconds)*time.Second) }