Skip to content

Commit

Permalink
fixup! Restrict the concurrency of the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Nov 19, 2023
1 parent 1c7870b commit 57b1e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/base/orchestrator/src/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Arc<Semaphore>> =
Expand Down

0 comments on commit 57b1e3f

Please sign in to comment.