From ab7463d7ace2791df16a02759a1b3186aa2fecbb Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Fri, 28 Feb 2025 21:18:30 +0100 Subject: [PATCH] Change retry limit --- client/internal/lazyconn/listener/allocator.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/internal/lazyconn/listener/allocator.go b/client/internal/lazyconn/listener/allocator.go index 832749824..807ae655f 100644 --- a/client/internal/lazyconn/listener/allocator.go +++ b/client/internal/lazyconn/listener/allocator.go @@ -2,12 +2,13 @@ package listener import ( "fmt" - log "github.com/sirupsen/logrus" "net" + + log "github.com/sirupsen/logrus" ) const ( - retryLimit = 100 + retryLimit = 5000 ) var (