From 86368a467e6d1db8842750aaa451023eec87a3bc Mon Sep 17 00:00:00 2001 From: James Phillips Date: Thu, 26 Jan 2017 08:20:43 -0800 Subject: [PATCH] Bumps the wait a little more. --- testutil/wait.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testutil/wait.go b/testutil/wait.go index b10028be70..6bfcc0de9a 100644 --- a/testutil/wait.go +++ b/testutil/wait.go @@ -11,7 +11,7 @@ type testFn func() (bool, error) type errorFn func(error) func WaitForResult(test testFn, error errorFn) { - retries := 200 + retries := 300 for retries > 0 { time.Sleep(100 * time.Millisecond)