From d4fd41285b8d8419506b7ad3e88e48b5b3e8057a Mon Sep 17 00:00:00 2001 From: Keerthan Reddy Mala Date: Tue, 8 Apr 2025 10:21:02 -0700 Subject: [PATCH] update the log message to reflect success and failed jobs --- 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 9e5a92332b1..70f2dc4773c 100644 --- a/pkg/controller/job/job_controller.go +++ b/pkg/controller/job/job_controller.go @@ -851,7 +851,7 @@ func (jm *Controller) syncJob(ctx context.Context, key string) (rErr error) { return nil } if _, ok := jm.finishedJobExpectations.Load(job.UID); ok { - logger.V(2).Info("Skip syncing the job as its marked completed but the completed update event is not yet received", "uid", job.UID, "key", key) + logger.V(2).Info("Skip syncing the job as its marked finished but the corresponding update event is not yet received", "uid", job.UID, "key", key) return nil }