From 4f1464b3af7d79091d6619cadc718c2f9965963b Mon Sep 17 00:00:00 2001 From: rovle Date: Thu, 5 Mar 2026 11:37:30 -0800 Subject: [PATCH] fix(daytona): default disk to 10GB to match platform limit Signed-off-by: rovle --- tools/environments/daytona.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/environments/daytona.py b/tools/environments/daytona.py index 43716fa8..8e8817d2 100644 --- a/tools/environments/daytona.py +++ b/tools/environments/daytona.py @@ -32,7 +32,7 @@ class DaytonaEnvironment(BaseEnvironment): timeout: int = 60, cpu: int = 1, memory: int = 5120, # MB (hermes convention) - disk: int = 51200, # MB (hermes convention) + disk: int = 10240, # MB (Daytona platform max is 10GB) persistent_filesystem: bool = True, task_id: str = "default", ):