Avoid ari mismatch problem during dry-run (#10332)

This is one solution to https://github.com/certbot/certbot/issues/10327.
It won't test an ARI check during a dry run, since it will just avoid
the mismatch problem by checking for dry run first and returning before
checking ARI. This PR will make the big error (actually a warning, but
red and scary) go away though.
This commit is contained in:
ohemorange
2025-06-12 08:05:57 -07:00
committed by GitHub
parent 2e827c5da6
commit b682687449
3 changed files with 14 additions and 3 deletions
+3
View File
@@ -15,6 +15,9 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
### Fixed
* When a CA fails to issue a certificate after finalization, print the ACME error from the order
* No longer checks ARI during certbot --dry-run, because --dry-run uses staging when used
with let's encrypt but the cert was issued against the default server. This would emit
a scary warning, even though the cert would renew successfully.
More details about these changes can be found on our GitHub repo.