Skip to content

Commit c3dc8b6

Browse files
Bug 1918085: Fixing the log message in WaitForJobCompletion()
Signed-off-by: Lalatendu Mohanty <[email protected]>
1 parent 2b45354 commit c3dc8b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/resourcebuilder/batch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func WaitForJobCompletion(ctx context.Context, client batchclientv1.JobsGetter,
1818
klog.Error(err)
1919
return false, nil
2020
} else if !done {
21-
klog.V(4).Infof("Job %s in namespace %s is not ready, continuing to wait.", job.ObjectMeta.Namespace, job.ObjectMeta.Name)
21+
klog.V(4).Infof("Job %s in namespace %s is not ready, continuing to wait.", job.ObjectMeta.Name, job.ObjectMeta.Namespace)
2222
return false, nil
2323
}
2424
return true, nil

0 commit comments

Comments
 (0)