Skip to content

Commit 41af279

Browse files
Merge pull request #503 from LalatenduMohanty/bz_1918085
Bug 1918085: Fixing the log message in WaitForJobCompletion()
2 parents 2b45354 + c3dc8b6 commit 41af279

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)