mirror of
https://github.com/p-stream/providers.git
synced 2026-04-20 19:52:09 +00:00
Increase timeout p1
This commit is contained in:
parent
b29513a022
commit
431599b4ab
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue