diff options
author | Kevin Guthrie <[email protected]> | 2024-10-21 11:27:11 -0400 |
---|---|---|
committer | Kevin Guthrie <[email protected]> | 2024-10-28 11:51:38 -0400 |
commit | 7be56d4f3fd90fd44081accf47bd9cc995ae28ef (patch) | |
tree | 2c278aa19ec3b191a59d3992bd3b20008eec444d | |
parent | 418d9f7ca19c17f0d81b5563f72e57a1ca814ba0 (diff) | |
download | pingora-7be56d4f3fd90fd44081accf47bd9cc995ae28ef.tar.gz pingora-7be56d4f3fd90fd44081accf47bd9cc995ae28ef.zip |
Fix clippy lint for leaking private type in rustls
-rw-r--r-- | .bleep | 2 | ||||
-rw-r--r-- | pingora-core/src/connectors/tls/rustls/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -5575f7e332f3f097132e2281ce0e09cb0c11edfa
\ No newline at end of file +3dd34515725af2df875219491ab8542ecf59bd2b
\ No newline at end of file diff --git a/pingora-core/src/connectors/tls/rustls/mod.rs b/pingora-core/src/connectors/tls/rustls/mod.rs index 4a44f1d..80665e5 100644 --- a/pingora-core/src/connectors/tls/rustls/mod.rs +++ b/pingora-core/src/connectors/tls/rustls/mod.rs @@ -45,7 +45,7 @@ impl Connector { } } -pub(crate) struct TlsConnector { +pub struct TlsConnector { config: Arc<RusTlsClientConfig>, ca_certs: Arc<RootCertStore>, } |