chore(engine): remove MIN_WORKER_COUNT (#21829)

This commit is contained in:
DaniPopes
2026-02-05 20:06:50 +01:00
committed by GitHub
parent f113caa26a
commit 67e29aa60d
4 changed files with 14 additions and 11 deletions

View File

@@ -335,7 +335,7 @@ pub struct EngineArgs {
pub allow_unwind_canonical_header: bool,
/// Configure the number of storage proof workers in the Tokio blocking pool.
/// If not specified, defaults to 2x available parallelism, clamped between 2 and 64.
/// If not specified, defaults to 2x available parallelism.
#[arg(long = "engine.storage-worker-count", default_value = Resettable::from(DefaultEngineValues::get_global().storage_worker_count.map(|v| v.to_string().into())))]
pub storage_worker_count: Option<usize>,