From 3c865d0a6a79570d7954f4215b7c061f0d12268d Mon Sep 17 00:00:00 2001 From: josh <josh@elixxir.io> Date: Tue, 1 Jun 2021 13:50:29 -0700 Subject: [PATCH] Bump UncheckRoundPeriod on integration flag only --- cmd/root.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/root.go b/cmd/root.go index f6119fa1b..30b7b4a72 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -385,6 +385,9 @@ func initClient() *api.Client { netParams.ForceHistoricalRounds = viper.GetBool("forceHistoricalRounds") netParams.FastPolling = viper.GetBool(" slowPolling") netParams.ForceMessagePickupRetry = viper.GetBool("forceMessagePickupRetry") + if netParams.ForceMessagePickupRetry { + netParams.UncheckRoundPeriod = 5 *time.Second + } //load the client client, err := api.Login(storeDir, []byte(pass), netParams) -- GitLab