From ce4137d6971d482dcc6594a9d9b9a6d90baa72b1 Mon Sep 17 00:00:00 2001 From: James Murdza Date: Sat, 19 Oct 2024 05:45:35 -0600 Subject: [PATCH] chore: increase timeout for E2B sandboxes --- backend/server/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/server/src/index.ts b/backend/server/src/index.ts index 9f08b3b..23eab00 100644 --- a/backend/server/src/index.ts +++ b/backend/server/src/index.ts @@ -53,7 +53,7 @@ process.on("unhandledRejection", (reason, promise) => { }) // The amount of time in ms that a container will stay alive without a hearbeat. -const CONTAINER_TIMEOUT = 60_000 +const CONTAINER_TIMEOUT = 120_000 dotenv.config()