chore (fetcher): increase timeout to 15s

This commit is contained in:
webstreamr 2025-05-20 21:15:37 +02:00 committed by GitHub
parent e6980e5676
commit 243eaa834b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ export class Fetcher {
private readonly getConfig = (ctx: Context, url: URL, config?: AxiosRequestConfig): AxiosRequestConfig => {
return {
responseType: 'text',
timeout: 10000,
timeout: 15000,
...config,
headers: {
'User-Agent': this.createUserAgentForIp(ctx.ip),