diff options
author | 2023-10-04 10:31:04 +0000 | |
---|---|---|
committer | 2023-10-04 10:31:04 +0000 | |
commit | b18d4bf3b17cf98cf5bbc488772773bdfcc38ec4 (patch) | |
tree | b5e9ab2e32839c79cead00bcf2ddc4f7ced9f16e /packages/integrations/node | |
parent | 21e0757ea22a57d344c934045ca19db93b684436 (diff) | |
download | astro-b18d4bf3b17cf98cf5bbc488772773bdfcc38ec4.tar.gz astro-b18d4bf3b17cf98cf5bbc488772773bdfcc38ec4.tar.zst astro-b18d4bf3b17cf98cf5bbc488772773bdfcc38ec4.zip |
[ci] format
Diffstat (limited to 'packages/integrations/node')
-rw-r--r-- | packages/integrations/node/src/createOutgoingHttpHeaders.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/src/createOutgoingHttpHeaders.ts b/packages/integrations/node/src/createOutgoingHttpHeaders.ts index a2f9b74e8..781a74de6 100644 --- a/packages/integrations/node/src/createOutgoingHttpHeaders.ts +++ b/packages/integrations/node/src/createOutgoingHttpHeaders.ts @@ -13,7 +13,7 @@ export const createOutgoingHttpHeaders = ( if (!headers) { return undefined; } - + // at this point, a multi-value'd set-cookie header is invalid (it was concatenated as a single CSV, which is not valid for set-cookie) const nodeHeaders: OutgoingHttpHeaders = Object.fromEntries(headers.entries()); |