From fd27e16c187a72af4392fca2228c450506b24fd9 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Thu, 7 Nov 2019 06:53:53 -0800 Subject: [PATCH] Reduce mysql retry time to 3s --- test/integration/functional_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index fc1b2390a..152f94309 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -562,7 +562,7 @@ func validateMySQL(ctx context.Context, t *testing.T, profile string) { rr, err = Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "exec", names[0], "--", "mysql", "-ppassword", "-e", "show databases;")) return err } - if err = retry.Expo(mysql, 10*time.Second, 60*time.Second); err != nil { + if err = retry.Expo(mysql, 3*time.Second, 60*time.Second); err != nil { t.Errorf("mysql failing: %v", err) } } -- GitLab