Increase timeout p1

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

View file

@ -22,7 +22,7 @@ export function makeSimpleProxyFetcher(proxyUrl: string, f: FetchLike): Fetcher
const fetcher = makeStandardFetcher(async (a, b) => {
// AbortController
const controller = new AbortController();
const timeout = 10000; // 10s timeout
const timeout = 15000; // 15s timeout
const timeoutId = setTimeout(() => controller.abort(), timeout);
try {