File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,6 @@ use crate::{
27
27
storage:: { AzureBlobConfig , FSConfig , S3Config } ,
28
28
} ;
29
29
30
- #[ cfg( any(
31
- all( target_os = "linux" , target_arch = "x86_64" ) ,
32
- all( target_os = "macos" , target_arch = "aarch64" )
33
- ) ) ]
34
- use crate :: kafka:: SslProtocol as KafkaSslProtocol ;
35
-
36
- #[ cfg( not( any(
37
- all( target_os = "linux" , target_arch = "x86_64" ) ,
38
- all( target_os = "macos" , target_arch = "aarch64" )
39
- ) ) ) ]
40
- use std:: string:: String as KafkaSslProtocol ;
41
-
42
30
/// Default username and password for Parseable server, used by default for local mode.
43
31
/// NOTE: obviously not recommended for production
44
32
pub const DEFAULT_USERNAME : & str = "admin" ;
@@ -344,7 +332,7 @@ pub struct Options {
344
332
value_parser = validation:: kafka_security_protocol,
345
333
help = "Kafka security protocol"
346
334
) ]
347
- pub kafka_security_protocol : Option < KafkaSslProtocol > ,
335
+ pub kafka_security_protocol : Option < crate :: kafka :: SslProtocol > ,
348
336
349
337
#[ cfg( any(
350
338
all( target_os = "linux" , target_arch = "x86_64" ) ,
You can’t perform that action at this time.
0 commit comments