acme/authority: Add space around *

Makes the line more readable.
This commit is contained in:
David Cowden 2020-04-30 04:44:36 -07:00
parent f56c449ea4
commit 5e6a020da5

View file

@ -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()