From e81f6ccf989d4573b59ec7b2bf2812fe3e9fb534 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 13 Oct 2021 09:57:20 +0200 Subject: [PATCH] Fix requests timeout --- server/helpers/requests.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/helpers/requests.ts b/server/helpers/requests.ts index 535478017..74ed1d786 100644 --- a/server/helpers/requests.ts +++ b/server/helpers/requests.ts @@ -96,10 +96,6 @@ const peertubeGot = got.extend({ path }, httpSignatureOptions) } - }, - - (options: GotOptions) => { - options.timeout = REQUEST_TIMEOUT } ] } @@ -213,6 +209,7 @@ function buildGotOptions (options: PeerTubeRequestOptions) { return { method: options.method, dnsCache: true, + timeout: REQUEST_TIMEOUT, json: options.json, searchParams: options.searchParams, headers,