From 92b38dcea1bf08298cc21086cd29744e8b332566 Mon Sep 17 00:00:00 2001 From: tofarr Date: Mon, 2 Dec 2024 09:56:41 -0700 Subject: [PATCH] Change the default value of keep_runtime_alive from True to False (#5288) --- openhands/core/config/sandbox_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/core/config/sandbox_config.py b/openhands/core/config/sandbox_config.py index 4bbfba716bae..fee44cbaffd6 100644 --- a/openhands/core/config/sandbox_config.py +++ b/openhands/core/config/sandbox_config.py @@ -36,7 +36,7 @@ class SandboxConfig: remote_runtime_api_url: str = 'http://localhost:8000' local_runtime_url: str = 'http://localhost' - keep_runtime_alive: bool = True + keep_runtime_alive: bool = False rm_all_containers: bool = False api_key: str | None = None base_container_image: str = 'nikolaik/python-nodejs:python3.12-nodejs22' # default to nikolaik/python-nodejs:python3.12-nodejs22 for eventstream runtime