From 22af71f125ca467a109eff50e78c5b7aea0e8642 Mon Sep 17 00:00:00 2001 From: Austin Abro Date: Sun, 29 Dec 2024 17:35:32 +0000 Subject: [PATCH] comments Signed-off-by: Austin Abro --- pkg/kube/kwait.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/kube/kwait.go b/pkg/kube/kwait.go index c1822d87c..674552432 100644 --- a/pkg/kube/kwait.go +++ b/pkg/kube/kwait.go @@ -33,7 +33,6 @@ import ( ) type kstatusWaiter struct { - // Add any necessary dependencies, e.g., Kubernetes API client. sw watcher.StatusWatcher log func(string, ...interface{}) pausedAsReady bool @@ -44,7 +43,6 @@ func (w *kstatusWaiter) Wait(resourceList ResourceList, timeout time.Duration) e } func (w *kstatusWaiter) WaitWithJobs(resourceList ResourceList, timeout time.Duration) error { - // Implementation return w.wait(resourceList, timeout, true) }