From 27960c9a43f0ecab7fac3f797938281b46658f01 Mon Sep 17 00:00:00 2001 From: AI Assistant Date: Tue, 31 Mar 2026 07:01:36 +0300 Subject: [PATCH] fix(monitor): increase refresh-all timeout to 3h First-run magic enrichment on partially-enriched UATs can take 30+ minutes per UAT. After first complete run, subsequent runs will be seconds. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/app/(modules)/monitor/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(modules)/monitor/page.tsx b/src/app/(modules)/monitor/page.tsx index 0ec04ac..4fb78fc 100644 --- a/src/app/(modules)/monitor/page.tsx +++ b/src/app/(modules)/monitor/page.tsx @@ -433,10 +433,10 @@ function SyncTestButton({ label, description, siruta, mode, includeNoGeometry, a setTimeout(() => { if (pollRef.current) { clearInterval(pollRef.current); pollRef.current = null; - addLog("error", `[${label}] Timeout 60min (${formatElapsed()})`); + addLog("error", `[${label}] Timeout 3h (${formatElapsed()})`); setActionLoading(""); } - }, 60 * 60_000); + }, 3 * 60 * 60_000); } catch { addLog("error", `[${label}] Eroare retea`); setActionLoading(""); } }} disabled={!!actionLoading}