forked from TrueCloudLab/lego
exec: serial behavior (#881)
This commit is contained in:
parent
985f3f8b7b
commit
5bf36f544a
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue