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

This commit is contained in:
alexzorin 2022-03-24 09:07:29 +11:00 committed by GitHub
parent 5404701111
commit 690f62bae2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -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.')

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