File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ pub struct Options {
217
217
value_name = "bool" ,
218
218
default_value = "false"
219
219
) ]
220
- pub skip_tls : bool ,
220
+ pub tls_skip_verify : bool ,
221
221
222
222
// Storage configuration
223
223
#[ arg(
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ pub static INTRA_CLUSTER_CLIENT: Lazy<Client> = Lazy::new(|| {
101
101
. brotli ( true ) // brotli compress for all requests
102
102
. use_rustls_tls ( ) // use only the rustls backend
103
103
. http1_only ( ) // use only http/1.1
104
- . danger_accept_invalid_certs ( PARSEABLE . options . skip_tls )
104
+ . danger_accept_invalid_certs ( PARSEABLE . options . tls_skip_verify )
105
105
. build ( )
106
106
. expect ( "Construction of client shouldn't fail" )
107
107
} ) ;
You can’t perform that action at this time.
0 commit comments