fix: increase bot HTTP timeout to 60s for auth flow
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
ad5c9d10cd
commit
729c6355b5
1 changed files with 2 additions and 2 deletions
|
|
@ -14,8 +14,8 @@ from typing import Optional, Dict, Any, Callable, Awaitable
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
# Default timeout for bot HTTP calls
|
# Default timeout for bot HTTP calls (60s to allow for Microsoft auth flow)
|
||||||
_BOT_TIMEOUT = aiohttp.ClientTimeout(total=30)
|
_BOT_TIMEOUT = aiohttp.ClientTimeout(total=60)
|
||||||
|
|
||||||
|
|
||||||
class BrowserBotConnector:
|
class BrowserBotConnector:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue