exec: serial behavior (#881)

This commit is contained in:
Zlatko Čalušić 2019-05-05 20:11:58 +02:00 committed by Ludovic Fernandez
parent 985f3f8b7b
commit 5bf36f544a

View file

@ -105,3 +105,9 @@ func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
return d.config.PropagationTimeout, d.config.PollingInterval
}
// Sequential All DNS challenges for this provider will be resolved sequentially.
// Returns the interval between each iteration.
func (d *DNSProvider) Sequential() time.Duration {
return d.config.PropagationTimeout
}