We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878b27a commit accacb2Copy full SHA for accacb2
.changeset/polite-goats-taste.md
@@ -0,0 +1,5 @@
1
+---
2
+'@as-integrations/aws-lambda': patch
3
4
+
5
+Downcase all header keys during normalization
src/index.ts
@@ -169,7 +169,7 @@ function normalizeHeaders(
169
): Map<string, string> {
170
const headerMap = new Map<string, string>();
171
for (const [key, value] of Object.entries(headers)) {
172
- headerMap.set(key, value ?? '');
+ headerMap.set(key.toLocaleLowerCase(), value ?? '');
173
}
174
return headerMap;
175
0 commit comments