Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
justinchiu-cohere committed Jan 28, 2025
commit f8f02e7d97c71344ba3a99e91cc29f8c40505501
2 changes: 1 addition & 1 deletion commit0/harness/execution_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def exec_run_with_timeout(self, command: str) -> tuple[str, bool, float]:
for fname in self.files_to_collect:
with (self.log_dir / fname).open("w") as f:
f.write(self.sb.files.read(f"testbed/{fname}"))
timed_out = self.sb.is_running
timed_out = self.sb.is_running()
end_time = time.time()
return result.stderr, timed_out, end_time - start_time

Expand Down
Loading