From 1dbb80afe6b19007df8e929e54515284f1fb605b Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Tue, 17 Mar 2026 08:47:21 +0000 Subject: [PATCH] cmd/devp2p/v5test: extend FindnodeResults retry window --- cmd/devp2p/internal/v5test/discv5tests.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/devp2p/internal/v5test/discv5tests.go b/cmd/devp2p/internal/v5test/discv5tests.go index 76266aff4a..97583fd8df 100644 --- a/cmd/devp2p/internal/v5test/discv5tests.go +++ b/cmd/devp2p/internal/v5test/discv5tests.go @@ -296,8 +296,8 @@ that they are returned by FINDNODE.`) conn, l1 := s.listen1(t) defer conn.close() - const maxAttempts = 15 - const retryInterval = 3 * time.Second + const maxAttempts = 45 + const retryInterval = 2 * time.Second for attempt := 1; attempt <= maxAttempts; attempt++ { foundNodes, err := conn.findnode(l1, dists)