From 07aec4e812fa58e18b451177dca249297bf9fa9b Mon Sep 17 00:00:00 2001 From: Ryan Gaus Date: Fri, 15 Aug 2025 16:25:32 -0400 Subject: [PATCH] feat: increase agents session timeout to take into account hosted agents booting time This is a temporary change - once there's a better mechanism in place to do this, the plan is to revert this commit and utilize the better mechanism. --- components/session-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/session-view.tsx b/components/session-view.tsx index d14890ec..8141411e 100644 --- a/components/session-view.tsx +++ b/components/session-view.tsx @@ -75,7 +75,7 @@ export const SessionView = ({ }); room.disconnect(); } - }, 10_000); + }, 20_000); return () => clearTimeout(timeout); }