From a53d4afd9c0869b8f3064bb3a4c60f5bfd66404b Mon Sep 17 00:00:00 2001 From: Adrian Villin Date: Fri, 15 Aug 2025 09:10:23 +0200 Subject: [PATCH] hs-test: KindIperfVclTest fix - fixed test failure when pods take slightly longer to deploy Type: fix Change-Id: I76c93213563a38b0165720986def9b60c4b671ac Signed-off-by: Adrian Villin --- extras/hs-test/kind_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/hs-test/kind_test.go b/extras/hs-test/kind_test.go index 12f6b3972f3..8039e6b0624 100644 --- a/extras/hs-test/kind_test.go +++ b/extras/hs-test/kind_test.go @@ -17,10 +17,10 @@ const vcl string = "VCL_CONFIG=/vcl.conf" const ldp string = "LD_PRELOAD=/usr/lib/libvcl_ldpreload.so" func KindIperfVclTest(s *KindSuite) { - ctx, cancel := context.WithTimeout(s.MainContext, time.Second*30) - defer cancel() s.DeployPod(s.Pods.ClientGeneric) s.DeployPod(s.Pods.ServerGeneric) + ctx, cancel := context.WithTimeout(s.MainContext, time.Second*40) + defer cancel() _, err := s.Pods.ClientGeneric.Exec(ctx, []string{"/bin/bash", "-c", VclConfIperf}) s.AssertNil(err) -- 2.16.6