Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Feb 22, 2024
1 parent 95774a6 commit ffb457f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions validator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1534,10 +1534,9 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> {
.arg(
Arg::with_name("unified_scheduler_handler_threads")
.long("unified-scheduler-handler-threads")
.value_name("THREADS")
.takes_value(true)
.global(true)
.hidden(hidden_unless_forced())
.value_name("COUNT")
.takes_value(true)
.validator(|s| is_within_range(s, 1..))
.help(DefaultSchedulerPool::cli_message()),
)
Expand Down

0 comments on commit ffb457f

Please sign in to comment.