manual: serial behavior. (#880)

This commit is contained in:
Ludovic Fernandez 2019-05-06 20:11:06 +02:00 committed by GitHub
parent 437d6a0408
commit 75a4315464
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@ import (
"bufio"
"fmt"
"os"
"time"
)
const (
@ -50,3 +51,9 @@ func (*DNSProviderManual) CleanUp(domain, token, keyAuth string) error {
return nil
}
// Sequential All DNS challenges for this provider will be resolved sequentially.
// Returns the interval between each iteration.
func (d *DNSProviderManual) Sequential() time.Duration {
return DefaultPropagationTimeout
}