Skip to content

Commit

Permalink
ACME: discard ari replaces after any order error.
Browse files Browse the repository at this point in the history
  • Loading branch information
webprofusion-chrisc committed Dec 3, 2024
1 parent 61c501d commit e09230d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Certify.Providers/ACME/Anvil/AnvilACMEProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ public async Task<PendingOrder> BeginCertificateOrder(ILog log, ManagedCertifica
&& managedCertificate.CertificateCurrentCA == managedCertificate.LastAttemptedCA
&& !string.IsNullOrWhiteSpace(managedCertificate.ARICertificateId)
&& managedCertificate.ARICertificateId.Contains(".")
&& managedCertificate.RenewalFailureCount < 3
&& managedCertificate.RenewalFailureCount == 0
&& !skipAriReplace
)
{
Expand Down

0 comments on commit e09230d

Please sign in to comment.