Skip to content

Commit a56ddaa

Browse files
committed
Remove response headers
1 parent 24d8459 commit a56ddaa

File tree

1 file changed

+9
-0
lines changed
  • examples/v7-ef-cloud-fetch/edge-functions

1 file changed

+9
-0
lines changed

examples/v7-ef-cloud-fetch/edge-functions/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ export async function handleHttpRequest(request) {
55
? await request.arrayBuffer()
66
: undefined;
77

8+
// Remove headers that could cause the a response status of 204/304 to be returned.
9+
const headersToRemove = [
10+
'etag',
11+
'if-modified-since',
12+
'if-none-match',
13+
'last-modified',
14+
];
15+
headersToRemove.forEach((header) => request.headers.delete(header));
16+
817
// Perform a fetch request to the original request URL with the same method, headers, and body.
918
// Specify 'edgio_serverless' as the origin to fetch the original Cloud Functions response.
1019
const cloudFunctionsResponse = await fetch(request.url, {

0 commit comments

Comments
 (0)