We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24d8459 commit a56ddaaCopy full SHA for a56ddaa
examples/v7-ef-cloud-fetch/edge-functions/index.js
@@ -5,6 +5,15 @@ export async function handleHttpRequest(request) {
5
? await request.arrayBuffer()
6
: undefined;
7
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
+
17
// Perform a fetch request to the original request URL with the same method, headers, and body.
18
// Specify 'edgio_serverless' as the origin to fetch the original Cloud Functions response.
19
const cloudFunctionsResponse = await fetch(request.url, {
0 commit comments