Skip to content
Snippets Groups Projects
Unverified Commit 48c94907 authored by MeiMei's avatar MeiMei Committed by GitHub
Browse files

Increase download timeout to 60 sec (#6503)

parent 4fd06369
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ export async function downloadUrl(url: string, path: string) {
const controller = new AbortController();
setTimeout(() => {
controller.abort();
}, 11 * 1000);
}, 60 * 1000);
const response = await fetch(new URL(url).href, {
headers: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment