From 5628ec339ea7b4647092f7db9778c81ba59406c1 Mon Sep 17 00:00:00 2001 From: Oscar Date: Mon, 29 Jun 2026 11:40:45 +0300 Subject: [PATCH] =?UTF-8?q?=E2=8F=B3=20fix(scraper):=20=D1=83=D0=B2=D0=B5?= =?UTF-8?q?=D0=BB=D0=B8=D1=87=D0=B8=D0=B2=D0=B0=D0=B5=D1=82=20=D1=82=D0=B0?= =?UTF-8?q?=D0=B9=D0=BC-=D0=B0=D1=83=D1=82=20=D0=B3=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D1=80=D0=B0=D1=86=D0=B8=D0=B8=20=D0=BF=D0=B8=D1=81=D1=8C=D0=BC?= =?UTF-8?q?=D0=B0=20=D0=B4=D0=BE=20120=20=D1=81=D0=B5=D0=BA=D1=83=D0=BD?= =?UTF-8?q?=D0=B4=20=D0=B4=D0=BB=D1=8F=20=D1=83=D0=BB=D1=83=D1=87=D1=88?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=81=D1=82=D0=B0=D0=B1=D0=B8=D0=BB?= =?UTF-8?q?=D1=8C=D0=BD=D0=BE=D1=81=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hh/scraper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hh/scraper.ts b/src/hh/scraper.ts index 3fe7787..a4dce28 100644 --- a/src/hh/scraper.ts +++ b/src/hh/scraper.ts @@ -474,7 +474,7 @@ export async function applyToJobs( const letterPromise = Promise.race([ createMessage(resume.data, description, user!.prompt), new Promise((_, reject) => - setTimeout(() => reject(new Error('Letter generation timeout (80s)')), 80000), + setTimeout(() => reject(new Error('Letter generation timeout (120s)')), 120000), ), ]).catch((err: Error) => { log.error('Letter Error:', err.message)