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:
-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