From 28ff5cfe6803e5e272cf81b1786910351ee95601 Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Mon, 15 Mar 2021 16:40:58 +0100 Subject: [PATCH] Try to remove artificial sleeps Signed-off-by: Matthias Wessendorf --- test/lib/operation.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/lib/operation.go b/test/lib/operation.go index 3f48fdc88a1..281438ed665 100644 --- a/test/lib/operation.go +++ b/test/lib/operation.go @@ -19,7 +19,6 @@ package lib import ( "context" "fmt" - "time" "github.com/pkg/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -105,9 +104,6 @@ func (c *Client) WaitForAllTestResourcesReady(ctx context.Context) 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 }