From 52490f681c50b7014a72d3264cf5b36b6827afcb Mon Sep 17 00:00:00 2001 From: Scott Nichols Date: Thu, 20 Aug 2020 12:55:04 -0700 Subject: [PATCH] remove a rando sleep, testing to see if it is still needed --- test/lib/operation.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/lib/operation.go b/test/lib/operation.go index b74bc852388..f3acc8e5197 100644 --- a/test/lib/operation.go +++ b/test/lib/operation.go @@ -18,8 +18,6 @@ package lib import ( "fmt" - "time" - "github.com/pkg/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" pkgTest "knative.dev/pkg/test" @@ -104,9 +102,6 @@ func (c *Client) WaitForAllTestResourcesReady() error { return fmt.Errorf("created Pod %q did not become ready: %+v", n, errors.WithStack(err)) } } - // FIXME(chizhg): This hacky sleep is added to try mitigating the test flakiness. - // Will delete it after we find the root cause and fix. - time.Sleep(10 * time.Second) return nil }