Skip to content

Commit 9de0d32

Browse files
committed
remove comments
1 parent ece9431 commit 9de0d32

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

sandbox-sidecar/src/runners/e2bRunner.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,10 @@ export class E2BSandboxRunner implements SandboxRunner {
235235
logger.warn({ templateId, engine, version }, "no pre-built template found, will install at runtime");
236236
}
237237

238-
// Extend sandbox lifetime to 1 hour for long-running benchmarks (EKS, etc.)
239-
// Default is 5 minutes which isn't enough for large terraform applies
240-
// Pro tier supports up to 24 hours, Hobby up to 1 hour
238+
241239
const sandboxTimeoutSeconds = 60 * 60; // 1 hour
242240

243-
// NOTE: CPU/memory are set at template BUILD time, not runtime
244-
// See templates/build-all.ts for resource configuration (8 CPU, 8GB RAM)
241+
245242

246243
logger.info({
247244
templateId,

sandbox-sidecar/templates/manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface TemplateSpec {
77
tplVersion: string;
88
}
99

10-
export const TEMPLATE_VERSION = "0.1.3"; // bump this when recipe changes (8 CPU, 8GB RAM)
10+
export const TEMPLATE_VERSION = "0.1.3"; // bump this when recipe changes
1111

1212
export const TEMPLATES: TemplateSpec[] = [
1313
{ engine: "terraform", engineVersion: "1.0.11", tplVersion: TEMPLATE_VERSION },

0 commit comments

Comments
 (0)