fix: increase test-auth timeout to 900s for 5 browser variants

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
patrick-motsch 2026-02-17 13:46:23 +01:00
parent 7b4be3dbc9
commit cd9b405d2e

View file

@ -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: