From f25fbe692299855da715cae744080ad59195be60 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Thu, 9 Apr 2026 12:41:30 +0200 Subject: [PATCH] reduce test retry budget Signed-off-by: Csaba Kiraly --- cmd/devp2p/internal/v5test/discv5tests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/devp2p/internal/v5test/discv5tests.go b/cmd/devp2p/internal/v5test/discv5tests.go index 69815a87b0..4dc2507693 100644 --- a/cmd/devp2p/internal/v5test/discv5tests.go +++ b/cmd/devp2p/internal/v5test/discv5tests.go @@ -312,7 +312,7 @@ that they are returned by FINDNODE.`) conn, l1 := s.listen1(t) defer conn.close() - const maxAttempts = 45 + const maxAttempts = 5 const retryInterval = 2 * time.Second for attempt := 1; attempt <= maxAttempts; attempt++ {