From 57b1e3fbab0cc5b9032541f2595b9a11fe648ca8 Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Sat, 18 Nov 2023 21:46:10 -0500 Subject: [PATCH] fixup! Restrict the concurrency of the unit tests --- compiler/base/orchestrator/src/coordinator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/base/orchestrator/src/coordinator.rs b/compiler/base/orchestrator/src/coordinator.rs index 915dfe837..317263a17 100644 --- a/compiler/base/orchestrator/src/coordinator.rs +++ b/compiler/base/orchestrator/src/coordinator.rs @@ -1780,7 +1780,7 @@ mod tests { env::var("TESTS_MAX_CONCURRENCY") .ok() .and_then(|v| v.parse().ok()) - .unwrap_or(3) + .unwrap_or(5) }); static CONCURRENT_TEST_SEMAPHORE: Lazy> =