Skip to content

Commit e8c28da

Browse files
ACME: don't warning if profile not set
1 parent 2408e9e commit e8c28da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Certify.Providers/ACME/Anvil/AnvilACMEProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ public async Task<PendingOrder> BeginCertificateOrder(ILog log, ManagedCertifica
759759
caSupportsRequestedProfile = true;
760760
log?.Information($"The CA supports the specified ACME Profile [{profile}].");
761761
}
762-
else
762+
else if (!string.IsNullOrWhiteSpace(profile))
763763
{
764764
log?.Error($"CA does not support the specified ACME Profile [{profile}]. The order will continue without a specific profile.");
765765
}

0 commit comments

Comments
 (0)