From 4f2ba39e75a7af91310487aed97c6c1d00f55150 Mon Sep 17 00:00:00 2001 From: David Stainton <dstainton@elixxir.io> Date: Fri, 26 Aug 2022 18:10:28 -0400 Subject: [PATCH] Fix exponential backoff duh --- ud/channelIDTracking.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ud/channelIDTracking.go b/ud/channelIDTracking.go index 79702703f..5426b04fa 100644 --- a/ud/channelIDTracking.go +++ b/ud/channelIDTracking.go @@ -249,6 +249,7 @@ func (c *clientIDTracker) registrationWorker(stopper *stoppable.Single) { backoffSeconds = maxBackoff } waitTime = time.Second * time.Duration(backoffSeconds) + exponent += 1 } } -- GitLab