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 819dfd0 commit a4317b4Copy full SHA for a4317b4
netlify/edge-functions/common/http.ts
@@ -1,4 +1,4 @@
1
-export async function get(url: string, timeout: number = 30000) {
+export async function get(url: string, timeout: number = 10000) {
2
const c = new AbortController();
3
const id = setTimeout(() => c.abort(), timeout);
4
const res = await fetch(url, { signal: c.signal });
0 commit comments