diff options
author | Andrew Hauck <[email protected]> | 2024-03-03 14:00:09 -0800 |
---|---|---|
committer | Edward Wang <[email protected]> | 2024-03-15 14:37:56 -0700 |
commit | a39694899fc048661b6fdb34931dbedf87586169 (patch) | |
tree | 1c0aae102f9223279612b2c6ec91a7943ccdf9d1 | |
parent | 8e994c396e9a0507ab3737bcd6ae888b67c27258 (diff) | |
download | pingora-a39694899fc048661b6fdb34931dbedf87586169.tar.gz pingora-a39694899fc048661b6fdb34931dbedf87586169.zip |
Fix SslMethod reference in connectors tests for boringssl
-rw-r--r-- | .bleep | 2 | ||||
-rw-r--r-- | pingora-core/src/connectors/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -9f410d52221da26c0651a99d071daf9b7acf87a2
\ No newline at end of file +8e6a08593def12f43d50e83c0d35f9f6f9aca630
\ No newline at end of file diff --git a/pingora-core/src/connectors/mod.rs b/pingora-core/src/connectors/mod.rs index a5dd99d..e35df37 100644 --- a/pingora-core/src/connectors/mod.rs +++ b/pingora-core/src/connectors/mod.rs @@ -360,9 +360,9 @@ fn test_reusable_stream(stream: &mut Stream) -> bool { #[cfg(test)] mod tests { use pingora_error::ErrorType; - use pingora_openssl::ssl::SslMethod; use super::*; + use crate::tls::ssl::SslMethod; use crate::upstreams::peer::BasicPeer; // 192.0.2.1 is effectively a black hole |