From cdadaba1d8fc3ac4f4515ec288c181ffb87975d9 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 21 Jun 2022 20:33:27 -0400 Subject: [PATCH] p2p: more dial routines --- internal/p2p/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/p2p/router.go b/internal/p2p/router.go index ff90e8c21..7ad5529fb 100644 --- a/internal/p2p/router.go +++ b/internal/p2p/router.go @@ -417,7 +417,7 @@ func (r *Router) routeChannel( func (r *Router) numConcurrentDials() int { if r.options.NumConcurrentDials == nil { - return runtime.NumCPU() + return runtime.NumCPU() * 32 } return r.options.NumConcurrentDials()