From d639a26bbe4fd7819a362c654b0c54032da18506 Mon Sep 17 00:00:00 2001 From: Nishant Das Date: Tue, 7 Mar 2023 12:15:51 +0800 Subject: [PATCH] Fix E2E Flakes (#12074) * fix flakes * make it longer * make it less to prevent triggering of other issues --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> --- testing/endtoend/params/params.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/testing/endtoend/params/params.go b/testing/endtoend/params/params.go index 35c4d67a0..67273f89f 100644 --- a/testing/endtoend/params/params.go +++ b/testing/endtoend/params/params.go @@ -158,8 +158,7 @@ const ( JaegerTracingPort = 9150 - StartupBufferSecs = 5 - StartupBufferSecsMulticlient = 10 + StartupBufferSecs = 15 ) func logDir() string { @@ -262,7 +261,7 @@ func InitMultiClient(t *testing.T, beaconNodeCount int, lighthouseNodeCount int) return err } - genTime := uint64(time.Now().Unix()) + StartupBufferSecsMulticlient + genTime := uint64(time.Now().Unix()) + StartupBufferSecs TestParams = ¶ms{ TestPath: filepath.Join(testPath, fmt.Sprintf("shard-%d", testShardIndex)), LogPath: logPath,