mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-06-10 04:31:02 +00:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f9868617a4 | |||
| 99b2618328 | |||
| 329440c05e | |||
| bd8ee26297 | |||
| 970917ca43 | |||
| 9ffc04bf13 | |||
| 2bb9594857 | |||
| fe7eaae984 | |||
| ff368b8444 | |||
| ba90c60c1b | |||
| 8762702560 | |||
| c3c7203af8 | |||
| ca7d8e2ba4 | |||
| bd422b633e | |||
| 331807e2f0 | |||
| ec96410546 |
@@ -201,7 +201,7 @@ async fn compile_contracts(
|
||||
// Puts a limit on how many compilations we can perform at any given instance which helps us
|
||||
// with some of the errors we've been seeing with high concurrency on MacOS (we have not tried
|
||||
// it on Linux so we don't know if these issues also persist there or not.)
|
||||
static SPAWN_GATE: LazyLock<Semaphore> = LazyLock::new(|| Semaphore::new(5));
|
||||
static SPAWN_GATE: LazyLock<Semaphore> = LazyLock::new(|| Semaphore::new(100));
|
||||
let _permit = SPAWN_GATE.acquire().await?;
|
||||
|
||||
let all_sources_in_dir = FilesWithExtensionIterator::new(metadata_directory.as_ref())
|
||||
|
||||
Reference in New Issue
Block a user