diff --git a/acme/jws.go b/acme/jws.go index 453b791c..928e277c 100644 --- a/acme/jws.go +++ b/acme/jws.go @@ -110,7 +110,9 @@ func (j *jws) Nonce() (string, error) { // get nonce ok and can continue break } - time.Sleep(RETRY_PAUSE); + if(i < TRY_COUNT -1) { + time.Sleep(RETRY_PAUSE); + } } } if len(j.nonces) == 0 {