We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b44ce92 commit d4860b9Copy full SHA for d4860b9
src/cli.rs
@@ -217,7 +217,7 @@ pub struct Options {
217
value_name = "bool",
218
default_value = "false"
219
)]
220
- pub skip_tls: bool,
+ pub tls_skip_verify: bool,
221
222
// Storage configuration
223
#[arg(
src/lib.rs
@@ -101,7 +101,7 @@ pub static INTRA_CLUSTER_CLIENT: Lazy<Client> = Lazy::new(|| {
101
.brotli(true) // brotli compress for all requests
102
.use_rustls_tls() // use only the rustls backend
103
.http1_only() // use only http/1.1
104
- .danger_accept_invalid_certs(PARSEABLE.options.skip_tls)
+ .danger_accept_invalid_certs(PARSEABLE.options.tls_skip_verify)
105
.build()
106
.expect("Construction of client shouldn't fail")
107
});
0 commit comments