From e3388b4b4b6b8f407b150346833bdcdc7ce83eb5 Mon Sep 17 00:00:00 2001 From: Alexandr Sorokin Date: Thu, 12 Sep 2024 13:34:22 +0300 Subject: [PATCH] Remove unused args for init command --- src/task/args.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/task/args.rs b/src/task/args.rs index df6fe19..1ee8172 100644 --- a/src/task/args.rs +++ b/src/task/args.rs @@ -109,25 +109,6 @@ pub(super) fn read() -> ArgMatches { "Used to overwrite the output file, whether \ or not it exists.", ), - Arg::new("failover-mode") - .long("failover-mode") - .short('m') - .action(ArgAction::Set) - .default_value("stateful") - .help("(string): failover mode (stateful, eventual, disabled)"), - Arg::new("failover-state-provider") - .long("failover-state-provider") - .short('F') - .action(ArgAction::Set) - .default_value("stateboard") - .help("(string): failover state provider (etcd2, stateboard, disabled)"), - Arg::new("print") - .long("print") - .short('p') - .action(ArgAction::Set) - .default_values(["colorized", "ports"]) - .num_args(1..=3) - .help("(list, optional): cluster print output option"), Arg::new("quiet") .long("quiet") .short('q')