From 5e6a020da53faef00bf12ea8306c259708ab8dd4 Mon Sep 17 00:00:00 2001 From: David Cowden Date: Thu, 30 Apr 2020 04:44:36 -0700 Subject: [PATCH] acme/authority: Add space around `*` Makes the line more readable. --- acme/authority.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acme/authority.go b/acme/authority.go index b1f94c3e..b58dc147 100644 --- a/acme/authority.go +++ b/acme/authority.go @@ -323,8 +323,8 @@ func (a *Authority) BackoffChallenge(p provisioner.Interface, accID, chID string } remCalls := ch.getRetry().MaxAttempts - math.Mod(ch.getRetry().Called, ch.getRetry().MaxAttempts) - totBackoff := 0*time.Second - for i:=0; i < int(remCalls); i++ { + totBackoff := 0 * time.Second + for i := 0; i < int(remCalls); i++ { clone := ch.clone() clone.Retry.Called += float64(i) totBackoff += clone.getBackoff()