From 53da6da2bcb15dc987fa5b19eb33c4793e574c99 Mon Sep 17 00:00:00 2001 From: Dean Coakley Date: Thu, 20 Aug 2020 02:08:17 +0100 Subject: [PATCH] Remove outdated comment on wait.Until Kubernetes-commit: 53fef4a04598c3b1ee04c4930a29dbad5bb9ca63 --- tools/watch/until.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/watch/until.go b/tools/watch/until.go index b644fe7c..bf74837d 100644 --- a/tools/watch/until.go +++ b/tools/watch/until.go @@ -95,7 +95,7 @@ func UntilWithoutRetry(ctx context.Context, watcher watch.Interface, conditions // Until wraps the watcherClient's watch function with RetryWatcher making sure that watcher gets restarted in case of errors. // The initialResourceVersion will be given to watch method when first called. It shall not be "" or "0" -// given the underlying WATCH call issues (#74022). If you want the initial list ("", "0") done for you use ListWatchUntil instead. +// given the underlying WATCH call issues (#74022). // Remaining behaviour is identical to function UntilWithoutRetry. (See above.) // Until can deal with API timeouts and lost connections. // It guarantees you to see all events and in the order they happened.