We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4587f05 + aac9082 commit ddc0637Copy full SHA for ddc0637
commit0/harness/execution_context.py
@@ -247,8 +247,8 @@ def __init__(
247
248
# in modal, we create a sandbox for each operation. this seems super slow.
249
# let's try having a single sandbox for multiple operations
250
- # assume the sandbox needs to be alive for 30 operations
251
- 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)
252
self.sb.commands.run("curl -LsSf https://astral.sh/uv/install.sh | sh")
253
254
# setup sandbox env
0 commit comments