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" ;
@@ -336,7 +324,7 @@ pub struct Options {
336
324
value_parser = validation:: kafka_security_protocol,
337
325
help = "Kafka security protocol"
338
326
) ]
339
- pub kafka_security_protocol : Option < KafkaSslProtocol > ,
327
+ pub kafka_security_protocol : Option < crate :: kafka :: SslProtocol > ,
340
328
341
329
#[ cfg( any(
342
330
all( target_os = "linux" , target_arch = "x86_64" ) ,
You can’t perform that action at this time.
0 commit comments