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) <noreply@anthropic.com>
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user