Skip to content

Commit

Permalink
fix(config): aqua-pool-size argument (#1606)
Browse files Browse the repository at this point in the history
fix: aqua-pool-size argument
  • Loading branch information
gurinderu committed May 6, 2023
1 parent 2f77e04 commit 96fdf54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/server-config/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,14 +270,14 @@ pub(crate) struct DerivedArgs {
)]
services_workdir: Option<PathBuf>,
#[arg(
long,
long("aqua-pool-size"),
id = "AQUA_VM_POOL_SIZE",
help_heading = "AIR configuration",
help = "Number of AquaVM instances (particle script execution parallelism)",
value_name = "NUM",
display_order = 21
)]
aqua_pool_size: Option<PathBuf>,
aquavm_pool_size: Option<usize>,
#[arg(
long,
value_parser = clap::value_parser!(bool),
Expand Down

0 comments on commit 96fdf54

Please sign in to comment.