From a26b13e517eca34fe6ead1a9c704435614587f66 Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Wed, 12 Nov 2025 11:42:18 -0800 Subject: [PATCH] Change error msg --- backend/src/ee/services/pki-acme/pki-acme-service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/src/ee/services/pki-acme/pki-acme-service.ts b/backend/src/ee/services/pki-acme/pki-acme-service.ts index 0521c2a6d..55e9cc43f 100644 --- a/backend/src/ee/services/pki-acme/pki-acme-service.ts +++ b/backend/src/ee/services/pki-acme/pki-acme-service.ts @@ -133,7 +133,9 @@ export const pkiAcmeServiceFactory = ({ } const orgLicensePlan = await licenseService.getPlan(profile.project!.orgId); if (!orgLicensePlan.pkiAcme) { - throw new AcmeUnauthorizedError({ message: "The organization does not have a valid license to use ACME" }); + throw new AcmeUnauthorizedError({ + message: "Failed to validate ACME profile: Plan restriction. Upgrade plan to continue" + }); } return profile; };