Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion verifiers/envs/experimental/cli_agent_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ async def poll_job_completion(
"""Poll until background job completes, capturing output."""
while True:
status: BackgroundJobStatus = await self.sandbox_client.get_background_job(
sandbox_id, background_job
sandbox_id, background_job, timeout=60.0
Comment thread
cursor[bot] marked this conversation as resolved.
)
if status.completed:
state["agent_exit_code"] = status.exit_code
Expand Down
Loading