diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-08-25 20:10:46 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-08-25 20:10:46 -0700 |
commit | e77a94189ecbf13f041346e7d7b6d3ecf5876a6b (patch) | |
tree | 1e4f13f88dc735d0cafeb9de0d3cddb63ae44d66 /src/main.rs | |
parent | bdaf45ff85076cec93b68cd45c018bc02e2fa67e (diff) | |
download | es-public-proxy-e77a94189ecbf13f041346e7d7b6d3ecf5876a6b.tar.gz es-public-proxy-e77a94189ecbf13f041346e7d7b6d3ecf5876a6b.zip |
rename 'allow_all...' to 'unsafe_all...'
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index d95ef4a..d1c0f02 100644 --- a/src/main.rs +++ b/src/main.rs @@ -66,7 +66,7 @@ fn load_config() -> ProxyConfig { let args: Vec<String> = env::args().collect(); let args: Vec<&str> = args.iter().map(|x| x.as_str()).collect(); let mut config_path: Option<String> = None; - let mut allow_all_indices = false; + let mut unsafe_all_indices = false; // first parse CLI arg match args.as_slice() { @@ -80,7 +80,7 @@ fn load_config() -> ProxyConfig { std::process::exit(0); } [_, "--config", p] => config_path = Some(p.to_string()), - [_, "--allow-all-indices"] => allow_all_indices = true, + [_, "--unsafe-all-indices"] => unsafe_all_indices = true, _ => { eprintln!("{}", usage()); eprintln!("couldn't parse arguments"); @@ -101,8 +101,8 @@ fn load_config() -> ProxyConfig { } else { ProxyConfig::default() }; - if allow_all_indices { - config.allow_all_indices = Some(true); + if unsafe_all_indices { + config.unsafe_all_indices = Some(true); } config } |