forked from TrueCloudLab/certificates
acme/authority: Add space around *
Makes the line more readable.
This commit is contained in:
parent
f56c449ea4
commit
5e6a020da5
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue