dns-ovh: increase default propagation timeout to 120s (#9244)

This commit is contained in:
alexzorin
2022-03-23 15:07:29 -07:00
committed by GitHub
parent 5404701111
commit 690f62bae2
2 changed files with 3 additions and 2 deletions
@@ -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.')
+2 -1
View File
@@ -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