diff --git a/commit0/harness/execution_context.py b/commit0/harness/execution_context.py index 3a00dfb..33a75c6 100644 --- a/commit0/harness/execution_context.py +++ b/commit0/harness/execution_context.py @@ -247,8 +247,8 @@ def __init__( # in modal, we create a sandbox for each operation. this seems super slow. # let's try having a single sandbox for multiple operations - # assume the sandbox needs to be alive for 30 operations - self.sb = Sandbox(timeout=timeout * 30) + # assume the sandbox needs to be alive for an hour, the max duration + self.sb = Sandbox(timeout=60 * 60) self.sb.commands.run("curl -LsSf https://astral.sh/uv/install.sh | sh") # setup sandbox env