From cf46317d7ba92146f67906faca8a24621f7444e0 Mon Sep 17 00:00:00 2001 From: Nulo Date: Mon, 18 Dec 2023 12:46:34 -0300 Subject: [PATCH] reactivar keepalive y aumentar timeout connect --- downloader/network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/downloader/network.js b/downloader/network.js index cf51741..845b38a 100644 --- a/downloader/network.js +++ b/downloader/network.js @@ -3,7 +3,7 @@ import pLimit from "p-limit"; import { userAgent } from "./config.js"; const dispatcher = new Agent({ - pipelining: 0, + connect: { timeout: 60 * 1000 }, bodyTimeout: 15 * 60 * 1000, maxRedirections: 20, });