From 124065ac5279a082ecd57e98076fe61e4fac6952 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Wed, 9 Sep 2026 15:08:34 -0600 Subject: [PATCH] Fix duration lint in the sandbox driver benchmark Co-Authored-By: Claude Fable 5.1 --- lib/components/fabro-sandbox/tests/driver_bench.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/fabro-sandbox/tests/driver_bench.rs b/lib/components/fabro-sandbox/tests/driver_bench.rs index af6a69ae5..a3e11718c 100644 --- a/lib/components/fabro-sandbox/tests/driver_bench.rs +++ b/lib/components/fabro-sandbox/tests/driver_bench.rs @@ -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");