1
0
Fork 0

Fix requests timeout

This commit is contained in:
Chocobozzz 2021-10-13 09:57:20 +02:00
parent ac0725aa88
commit e81f6ccf98
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -96,10 +96,6 @@ const peertubeGot = got.extend({
path path
}, httpSignatureOptions) }, httpSignatureOptions)
} }
},
(options: GotOptions) => {
options.timeout = REQUEST_TIMEOUT
} }
] ]
} }
@ -213,6 +209,7 @@ function buildGotOptions (options: PeerTubeRequestOptions) {
return { return {
method: options.method, method: options.method,
dnsCache: true, dnsCache: true,
timeout: REQUEST_TIMEOUT,
json: options.json, json: options.json,
searchParams: options.searchParams, searchParams: options.searchParams,
headers, headers,