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

fixed a wait time bug

parent 41425fe9
No related branches found
No related tags found
5 merge requests!510Release,!419rewrote the health tracker to both consider if there are waiting rounds and...,!371[Channel RSAtoPrivate] Implement Reverse Asymmetric in Client/Broadcast,!354Channels impl,!340Project/channels
...@@ -253,6 +253,8 @@ func (c *clientIDTracker) registrationWorker(stopper *stoppable.Single) { ...@@ -253,6 +253,8 @@ func (c *clientIDTracker) registrationWorker(stopper *stoppable.Single) {
exponent += 1 exponent += 1
} }
waitTime = time.Second * time.Duration(backoffSeconds) waitTime = time.Second * time.Duration(backoffSeconds)
} else {
waitTime = time.Second
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment