From aa6cd3e22e98e140d933813edbc6fd9479d4131c Mon Sep 17 00:00:00 2001 From: Lee E Hinman <57081003+leehinman@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:03:55 -0600 Subject: [PATCH] increase time to wait for watcher in upgrade (#4064) Co-authored-by: Pierre HILBERT Co-authored-by: Craig MacKenzie --- testing/upgradetest/upgrader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/upgradetest/upgrader.go b/testing/upgradetest/upgrader.go index c9b23203e20..03ea5ea9472 100644 --- a/testing/upgradetest/upgrader.go +++ b/testing/upgradetest/upgrader.go @@ -278,7 +278,7 @@ func PerformUpgrade( // wait for the watcher to show up logger.Logf("waiting for upgrade watcher to start") - err = WaitForWatcher(ctx, 2*time.Minute, 10*time.Second) + err = WaitForWatcher(ctx, 5*time.Minute, 10*time.Second) if err != nil { return fmt.Errorf("failed to find watcher: %w", err) }