diff --git a/modules/features/teamsbot/browserBotConnector.py b/modules/features/teamsbot/browserBotConnector.py index b48280cd..210f09f1 100644 --- a/modules/features/teamsbot/browserBotConnector.py +++ b/modules/features/teamsbot/browserBotConnector.py @@ -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: