fix: increase bot HTTP timeout to 60s for auth flow

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
patrick-motsch 2026-02-15 12:20:58 +01:00
parent ad5c9d10cd
commit 729c6355b5

View file

@ -14,8 +14,8 @@ from typing import Optional, Dict, Any, Callable, Awaitable
logger = logging.getLogger(__name__)
# Default timeout for bot HTTP calls
_BOT_TIMEOUT = aiohttp.ClientTimeout(total=30)
# Default timeout for bot HTTP calls (60s to allow for Microsoft auth flow)
_BOT_TIMEOUT = aiohttp.ClientTimeout(total=60)
class BrowserBotConnector: