diff --git a/internal/acme/dns_provider.go b/internal/acme/dns_provider.go index 4a6b29b7..33ceb248 100644 --- a/internal/acme/dns_provider.go +++ b/internal/acme/dns_provider.go @@ -10,6 +10,7 @@ import ( "os" "strings" "sync" + "time" ) type DNSProvider struct { @@ -78,6 +79,10 @@ func (this *DNSProvider) Present(domain, token, keyAuth string) error { return nil } +func (this *DNSProvider) Timeout() (timeout, interval time.Duration) { + return 2 * time.Minute, 2 * time.Second +} + func (this *DNSProvider) CleanUp(domain, token, keyAuth string) error { return nil }