From 7bdf3865736ec264a965ae358b9d6195ce49030f Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Tue, 1 Jun 2021 19:48:59 -0700
Subject: [PATCH] Bump integration UncheckRoundPeriod lower

---
 cmd/root.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmd/root.go b/cmd/root.go
index 2a92505a1..1f958237d 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -386,7 +386,7 @@ func initClient() *api.Client {
 	netParams.FastPolling = viper.GetBool(" slowPolling")
 	netParams.ForceMessagePickupRetry = viper.GetBool("forceMessagePickupRetry")
 	if netParams.ForceMessagePickupRetry {
-		period := 5 *time.Second
+		period := 1 * time.Second
 		jww.INFO.Printf("Setting Uncheck Round Period to %v", period)
 		netParams.UncheckRoundPeriod = period
 	}
@@ -776,8 +776,8 @@ func init() {
 	viper.BindPFlag("slowPolling",
 		rootCmd.Flags().Lookup("slowPolling"))
 	rootCmd.Flags().Bool("forceMessagePickupRetry", false,
-		"Enable a mechanism which forces a 50% chance of no message pickup, " +
-		"instead triggering the message pickup retry mechanism")
+		"Enable a mechanism which forces a 50% chance of no message pickup, "+
+			"instead triggering the message pickup retry mechanism")
 	viper.BindPFlag("forceMessagePickupRetry",
 		rootCmd.Flags().Lookup("forceMessagePickupRetry"))
 
-- 
GitLab