From dd308ca576937533f232dbd1cb09c6b70bb53d6b Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Mon, 18 Nov 2019 11:17:58 -0500 Subject: [PATCH] Fix grammar: have -> has --- pkg/controller/job/job_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/job/job_controller.go b/pkg/controller/job/job_controller.go index 252a6ec23ca..c32770711b6 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) }