From 946d1ac664030bca43abfaeebdabc6f106537886 Mon Sep 17 00:00:00 2001 From: Edouard Vincent Date: Fri, 25 Feb 2022 19:48:06 -0800 Subject: [PATCH] style: cookie doman => cookie domain --- src/node/http.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node/http.ts b/src/node/http.ts index dbd72d84eae8..f006036d3924 100644 --- a/src/node/http.ts +++ b/src/node/http.ts @@ -196,7 +196,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string | // default NGINX does this). !host.includes(".") ) { - logger.debug("no valid cookie doman", field("host", host)) + logger.debug("no valid cookie domain", field("host", host)) return undefined } @@ -206,7 +206,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string | } }) - logger.debug("got cookie doman", field("host", host)) + logger.debug("got cookie domain", field("host", host)) return host || undefined }