From ebe175afcf21b763b91060499000738085169a71 Mon Sep 17 00:00:00 2001 From: Claus Lohmar Date: Tue, 21 Jul 2026 18:26:57 +0000 Subject: [PATCH] fix: bump analyze timeout to 300s for 87 GB+ disk images --- frontend/api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/api_client.py b/frontend/api_client.py index 3587da3..4425bd5 100644 --- a/frontend/api_client.py +++ b/frontend/api_client.py @@ -15,7 +15,7 @@ from typing import Optional BACKEND_URL = os.getenv("BACKEND_URL", "http://10.2.0.2:9000") TIMEOUT = 30 -ANALYZE_TIMEOUT = 120 # guestfish needs time to probe large disk images +ANALYZE_TIMEOUT = 300 # guestfish needs time to probe large disk images class ApiError(Exception):