We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1c847 commit b36f6afCopy full SHA for b36f6af
internal/verification/dns.go
@@ -176,7 +176,7 @@ func performDNSVerificationWithRetries(
176
for attempt := 0; attempt <= config.MaxRetries; attempt++ {
177
if attempt > 0 {
178
log.Printf("DNS verification retry %d/%d for domain %s after %v delay",
179
- attempt, config.MaxRetries, domain, retryDelay)
+ attempt+1, config.MaxRetries, domain, retryDelay)
180
181
// Wait before retry with context cancellation support
182
timer := time.NewTimer(retryDelay)
0 commit comments