You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue #75 - Route53: unrecognised argument --dns-route53-propagation-seconds
certbot-dns-route53 >= 1.22 removed this flag; the plugin polls Route53 internally.
Added supports_propagation_seconds_flag property to DNSProviderStrategy (base = True).
Route53Strategy overrides it to False. CertificateManager only appends the flag when
the strategy declares it is supported.
Files: modules/core/dns_strategies.py, modules/core/certificates.py
Issue #74 - Private CA ACME endpoint connection test fails with SSL error
The test endpoint was using verify=True (system CA bundle), rejecting self-signed /
private-root certificates even when a CA cert was supplied in the configuration form.
Fix: write the provided CA cert to a temporary PEM file and pass it as verify=<path>
to requests.get(). Temp file cleaned up in a finally block. SSL error messages now
include targeted hints about supplying or correcting the CA certificate.
File: modules/api/resources.py
Issue #56 - Residual Route53 / san_domains failures after v2.0.2
The remaining reported failure mode (--dns-route53-propagation-seconds unrecognised)
is resolved by the Issue #75 fix above.
Test suite: 161 passed, 9 skipped, 0 failed
New tests: TestRoute53PropagationFlag (4), TestAcmeConnectionSSLHandling (2)
0 commit comments