Skip to content

Commit

Permalink
feat(dns_wedos.py): change propagation seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
clazzor authored Jun 28, 2024
1 parent d2a7ced commit 4c3de02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions certbot_dns_wedos/dns_wedos.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:

@classmethod
def add_parser_arguments(cls, add: Callable[..., None],
default_propagation_seconds: int = 360) -> None:
default_propagation_seconds: int = 420) -> None:
super().add_parser_arguments(add, default_propagation_seconds)
add('credentials', help='Wedos credentials INI file.')

Expand Down Expand Up @@ -161,4 +161,4 @@ def _get_wedos_client(self) -> _WedosClient:
return _WedosClient(
self.credentials.conf('user'),
self.credentials.conf('auth')
)
)

0 comments on commit 4c3de02

Please sign in to comment.