From 3516701681b2256fe4f03973d33e7484a9183130 Mon Sep 17 00:00:00 2001 From: Austin Abro Date: Fri, 2 Aug 2024 13:26:13 +0000 Subject: [PATCH] increase external test timeout Signed-off-by: Austin Abro --- src/test/external/ext_in_cluster_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/external/ext_in_cluster_test.go b/src/test/external/ext_in_cluster_test.go index ffe5a08b73..e5033e7342 100644 --- a/src/test/external/ext_in_cluster_test.go +++ b/src/test/external/ext_in_cluster_test.go @@ -76,7 +76,7 @@ func (suite *ExtInClusterTestSuite) SetupSuite() { Name: "gitea-0", }, } - waitCtx, waitCancel := context.WithTimeout(context.Background(), 60*time.Second) + waitCtx, waitCancel := context.WithTimeout(context.Background(), 90*time.Second) defer waitCancel() err = pkgkubernetes.WaitForReady(waitCtx, c.Watcher, objs) suite.NoError(err) @@ -183,7 +183,7 @@ func (suite *ExtInClusterTestSuite) Test_1_Deploy() { Name: "podinfo", }, } - waitCtx, waitCancel := context.WithTimeout(context.Background(), 60*time.Second) + waitCtx, waitCancel := context.WithTimeout(context.Background(), 90*time.Second) defer waitCancel() err = pkgkubernetes.WaitForReady(waitCtx, c.Watcher, objs) suite.NoError(err)