]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/helpers/requests.ts
Fix requests timeout
[github/Chocobozzz/PeerTube.git] / server / helpers / requests.ts
index 5354780170da2852f6287bbc6e23ebcdc8c5909b..74ed1d78657cf6566819bfb5eefe8e7821df04c1 100644 (file)
@@ -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,