fix: bump analyze timeout to 300s for 87 GB+ disk images

This commit is contained in:
Claus Lohmar 2026-07-21 18:26:57 +00:00
parent 71792756ea
commit ebe175afcf

View file

@ -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):