Skip to content
Snippets Groups Projects
Commit ddd1dae8 authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

fixed the slowpolling flag, it was inverted

parent 3a777b78
Branches
Tags
1 merge request!170Release
......@@ -599,7 +599,7 @@ func initClient() *api.Client {
viper.GetUint("e2eNumReKeys"))
netParams.E2EParams.RekeyThreshold = viper.GetFloat64("e2eRekeyThreshold")
netParams.ForceHistoricalRounds = viper.GetBool("forceHistoricalRounds")
netParams.FastPolling = viper.GetBool(" slowPolling")
netParams.FastPolling = !viper.GetBool("slowPolling")
netParams.ForceMessagePickupRetry = viper.GetBool("forceMessagePickupRetry")
if netParams.ForceMessagePickupRetry {
period := 3 * time.Second
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment