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
parent54047011110341952b60dad88d5ec848d2e2cc71 (diff)
dns-ovh: increase default propagation timeout to 120s (#9244)
-rw-r--r--certbot-dns-ovh/certbot_dns_ovh/_internal/dns_ovh.py2
-rw-r--r--certbot/CHANGELOG.md3
2 files changed, 3 insertions, 2 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.')
diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md
index 3c267f1b7..d90eaacd9 100644
--- a/certbot/CHANGELOG.md
+++ b/certbot/CHANGELOG.md
@@ -10,7 +10,8 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
### Changed
-*
+* The default propagation timeout for the OVH DNS plugin (`--dns-ovh-propagation-seconds`)
+ has been increased from 30 seconds to 120 seconds, based on user feedback.
### Fixed