From b3cf4c32ffc431d1f7c1c63178ca11ffc74aaa3e Mon Sep 17 00:00:00 2001 From: Edouard Vincent Date: Tue, 1 Mar 2022 07:43:41 -0800 Subject: [PATCH] style: cookie doman => cookie domain (#4919) Co-authored-by: Joe Previte --- 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 dbd72d84e..f006036d3 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 }