From 81b8fa2e081b31c7252e2f73e67a011b396b0a05 Mon Sep 17 00:00:00 2001 From: codevil-ops Date: Fri, 11 Sep 2026 08:15:52 +0000 Subject: [PATCH] Raise sandbox sleepAfter timeout from 10m to 20m --- packages/worker/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/worker/src/index.ts b/packages/worker/src/index.ts index f28c603..170bc7b 100644 --- a/packages/worker/src/index.ts +++ b/packages/worker/src/index.ts @@ -30,7 +30,7 @@ export type { Env } from "./worker-env.js"; // Subclass the Cloudflare Sandbox so Codevil can keep active agent sessions // alive and persist stop diagnostics across abnormal socket closures. export class Sandbox extends BaseSandbox { - override sleepAfter = "10m"; + override sleepAfter = "20m"; private readonly redactionSecrets: readonly string[]; constructor(ctx: DurableObjectState<{}>, env: RuntimeEnv) {