increase browser session timeout (#3021)

This commit is contained in:
Jonathan Dobson
2025-07-23 15:03:35 -04:00
committed by GitHub
parent 5be39336eb
commit a27dea46d9

View File

@@ -21,7 +21,7 @@ export interface OptimisticBrowserSession {
run: (runOpts: RunOpts) => Promise<BrowserSessionData>;
}
const SESSION_TIMEOUT_MINUTES = 60;
const SESSION_TIMEOUT_MINUTES = 60 * 4;
const SPARE = "spare";
const makeKey = (user: User, workflowPermanentId?: string | undefined) => {