Increase timeout p2

This commit is contained in:
Pas 2025-04-15 20:41:03 -06:00 committed by GitHub
parent 431599b4ab
commit ca99fd6f6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@ export function makeStandardFetcher(f: FetchLike): Fetcher {
// AbortController
const controller = new AbortController();
const timeout = 10000; // 10s timeout
const timeout = 15000; // 15s timeout
const timeoutId = setTimeout(() => controller.abort(), timeout);
try {