Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexzorin <alex@zorin.id.au>2022-03-24 01:07:29 +0300
committerGitHub <noreply@github.com>2022-03-24 01:07:29 +0300
commit690f62bae2f23611b69c756dc03645ebe23138de (patch)
tree12ac3c2df7b4659a9ce641e7c7b1b1c5cbaa29ef /certbot-dns-ovh
parent54047011110341952b60dad88d5ec848d2e2cc71 (diff)
dns-ovh: increase default propagation timeout to 120s (#9244)
Diffstat (limited to 'certbot-dns-ovh')
-rw-r--r--certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py b/certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py
index 6b28042a2..301410ca8 100644
--- a/certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py
+++ b/certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py
@@ -32,7 +32,7 @@ class Authenticator(dns_common.DNSAuthenticator):
@classmethod
def add_parser_arguments(cls, add: Callable[..., None],
- default_propagation_seconds: int = 30) -> None:
+ default_propagation_seconds: int = 120) -> None:
super().add_parser_arguments(add, default_propagation_seconds)
add('credentials', help='OVH credentials INI file.')