Fix failed to to cannot

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-10-29 19:28:02 +01:00
parent 2766f8e423
commit 6f2bd9c92f
39 changed files with 198 additions and 192 deletions

View File

@@ -214,7 +214,7 @@ func (p *Provisioner) provisionDomainCertificate(
if err != nil {
p.logger.ErrorCtx(
ctx,
"failed to get HTTP challenge",
"cannot get HTTP challenge",
log.String("domain", domain.Domain),
log.Error(err),
)
@@ -233,7 +233,7 @@ func (p *Provisioner) provisionDomainCertificate(
fullDomain.SSLStatus = coredata.CustomDomainSSLStatusProvisioning
if err := fullDomain.Update(ctx, conn, coredata.NewNoScope(), p.encryptionKey); err != nil {
return fmt.Errorf("failed to update domain with challenge: %w", err)
return fmt.Errorf("cannot update domain with challenge: %w", err)
}
p.logger.InfoCtx(