From a804d0101b343f68178d853d41d8de531709865b Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Tue, 2 Dec 2025 09:57:58 -0800 Subject: [PATCH] Fix a typo --- backend/src/ee/services/pki-acme/pki-acme-challenge-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/ee/services/pki-acme/pki-acme-challenge-service.ts b/backend/src/ee/services/pki-acme/pki-acme-challenge-service.ts index c841b496d..7379d7ece 100644 --- a/backend/src/ee/services/pki-acme/pki-acme-challenge-service.ts +++ b/backend/src/ee/services/pki-acme/pki-acme-challenge-service.ts @@ -93,7 +93,7 @@ export const pkiAcmeChallengeServiceFactory = ({ // a long running operation for long time. But assuming we are not performing a tons of // challenge validation at the same time, it should be fine. const challengeResponse = await axios.get(challengeUrl.toString(), { - // In case if we override the hos2 in the development mode, still provide the original host in the header + // In case if we override the host in the development mode, still provide the original host in the header // to help the upstream server to validate the request headers: { Host: challenge.auth.identifierValue }, timeout: timeoutMs,