We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c6fc6d commit 1c0eb13Copy full SHA for 1c0eb13
src/connection.rs
@@ -620,7 +620,7 @@ mod tests {
620
621
async fn connect(
622
&self,
623
- _tls_config: Option<Arc<rustls::ClientConfig>>,
+ _tls_config: TlsConfig,
624
_socks5_proxy: Option<String>,
625
_max_message_size: usize,
626
) -> Result<Arc<Self::R>> {
tests/client.rs
@@ -73,6 +73,7 @@ async fn test_topic_crud() {
73
// Disabled as currently no TLS integration tests
74
#[ignore]
75
#[tokio::test]
76
+#[cfg(feature = "transport-tls")]
77
async fn test_tls() {
78
maybe_start_logging();
79
0 commit comments