From cd9b405d2ef3c77d982628f473bcb731bb05c941 Mon Sep 17 00:00:00 2001 From: patrick-motsch Date: Tue, 17 Feb 2026 13:46:23 +0100 Subject: [PATCH] fix: increase test-auth timeout to 900s for 5 browser variants Co-authored-by: Cursor --- modules/features/teamsbot/routeFeatureTeamsbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/features/teamsbot/routeFeatureTeamsbot.py b/modules/features/teamsbot/routeFeatureTeamsbot.py index c2bc53a7..db222efb 100644 --- a/modules/features/teamsbot/routeFeatureTeamsbot.py +++ b/modules/features/teamsbot/routeFeatureTeamsbot.py @@ -801,7 +801,7 @@ async def testAuth( } try: - timeout = aiohttp.ClientTimeout(total=300) + timeout = aiohttp.ClientTimeout(total=900) async with aiohttp.ClientSession(timeout=timeout) as session: async with session.post(f"{browserBotUrl}/api/bot/test-auth", json=payload) as resp: if resp.status == 200: