From 387b9b9d7ce2de9646d930ff40e306be68df3518 Mon Sep 17 00:00:00 2001
From: benjamin <ben@elixxir.io>
Date: Wed, 26 Oct 2022 20:10:09 -0700
Subject: [PATCH] reduced number of paralell node registrations

---
 cmix/params.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmix/params.go b/cmix/params.go
index 3ef813f0d..f15b62feb 100644
--- a/cmix/params.go
+++ b/cmix/params.go
@@ -100,7 +100,7 @@ func GetDefaultParams() Params {
 		MaxCheckedRounds:          500,
 		RegNodesBufferLen:         1000,
 		NetworkHealthTimeout:      15 * time.Second,
-		ParallelNodeRegistrations: 20,
+		ParallelNodeRegistrations: 2,
 		KnownRoundsThreshold:      1500, // 5 rounds/sec * 60 sec/min * 5 min
 		FastPolling:               true,
 		VerboseRoundTracking:      false,
-- 
GitLab