diff --git a/backend/app/services/scanner.py b/backend/app/services/scanner.py index c8bbc03..3a5791b 100644 --- a/backend/app/services/scanner.py +++ b/backend/app/services/scanner.py @@ -150,7 +150,7 @@ async def gitea_api(url: str, token: str = None) -> Any: headers = {"Content-Type": "application/json"} t = token or settings.GITEA_TOKEN - async with httpx.AsyncClient(timeout=30) as client: + async with httpx.AsyncClient(timeout=120) as client: # First try with token if available if t: headers["Authorization"] = f"token {t}"