Fix duration lint in the sandbox driver benchmark

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-09-09 15:08:34 -06:00
parent d88c6064af
commit 124065ac52
No known key found for this signature in database

View file

@ -297,7 +297,7 @@ async fn unpack_driver(sandbox: &dyn DriverSandbox, repo: &Repository) {
.exec()
.run(
&ExecSpec::bash("mkdir -p repo && tar -xf /tmp/repo.tar -C repo")
.timeout(Duration::from_secs(120)),
.timeout(Duration::from_mins(2)),
)
.await
.expect("unpack exec");