Skip to content
Snippets Groups Projects
Commit ad23cca0 authored by Josh Brooks's avatar Josh Brooks
Browse files

Add print

parent 1015c6ee
No related branches found
No related tags found
1 merge request!23Release
...@@ -386,7 +386,9 @@ func initClient() *api.Client { ...@@ -386,7 +386,9 @@ func initClient() *api.Client {
netParams.FastPolling = viper.GetBool(" slowPolling") netParams.FastPolling = viper.GetBool(" slowPolling")
netParams.ForceMessagePickupRetry = viper.GetBool("forceMessagePickupRetry") netParams.ForceMessagePickupRetry = viper.GetBool("forceMessagePickupRetry")
if netParams.ForceMessagePickupRetry { if netParams.ForceMessagePickupRetry {
netParams.UncheckRoundPeriod = 5 *time.Second period := 5 *time.Second
jww.INFO.Printf("Setting Uncheck Round Period to %v", period)
netParams.UncheckRoundPeriod = period
} }
//load the client //load the client
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment