From e8171799117969322ee57c9096c3039f97ef7df2 Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Mon, 15 Aug 2022 14:02:56 +0100 Subject: [PATCH] add backoff timer on errors --- tls.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tls.go b/tls.go index 22b6ad2..db03550 100644 --- a/tls.go +++ b/tls.go @@ -162,6 +162,7 @@ func (req *TLSRequest) AutoRenew( go func() { defer req.done.Done() + var backoff int = 5 for { for i := 0; i < 3; i++ { @@ -178,7 +179,7 @@ func (req *TLSRequest) AutoRenew( if err != nil { // if renew fails then sleep for a while and try again - sleep := time.Duration(rgen.Intn(300) + 600) + sleep := time.Duration(backoff+rgen.Intn(backoff/4)) * time.Second log.WithFields(log.Fields{ "attempt": i, @@ -186,7 +187,10 @@ func (req *TLSRequest) AutoRenew( "error": err, }).Error("libvault: auto renew failed") - time.Sleep(sleep * time.Second) + time.Sleep(sleep) + if backoff < 300 { + backoff *= 2 + } } else { // no error