Skip to content

Commit 771bcaa

Browse files
committed
chore: update pingora version
Signed-off-by: Shane Utt <shaneutt@linux.com>
1 parent 680c73c commit 771bcaa

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ http = "1.4.0"
4848
# Pinned to match Pingora's dependency.
4949
nix = "0.24.3"
5050
notify = "7.0.0"
51-
# Temporary fork: custom ServerConfig (PR #726) + public WrappedX509 for per-cluster CA.
52-
pingora-core = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "b2fa2c9a8d4074e2a2a42e70ab4c17f8c61a566d", features = ["rustls"] }
53-
pingora-http = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "b2fa2c9a8d4074e2a2a42e70ab4c17f8c61a566d" }
54-
pingora-proxy = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "b2fa2c9a8d4074e2a2a42e70ab4c17f8c61a566d", features = ["rustls"] }
51+
# Temporary fork: custom ServerConfig (PR #726) + WrappedX509::parse() for per-cluster CA.
52+
pingora-core = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "514d06b852e731848fd36574da9fcdaee101ccb4", features = ["rustls"] }
53+
pingora-http = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "514d06b852e731848fd36574da9fcdaee101ccb4" }
54+
pingora-proxy = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "514d06b852e731848fd36574da9fcdaee101ccb4", features = ["rustls"] }
5555
percent-encoding = "2.3.2"
5656
plotters = { version = "0.3.7", default-features = false, features = ["svg_backend", "line_series"] }
5757
praxis = { path = "server" }

protocol/src/http/pingora/handler/upstream_peer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fn ca_from_cached(cached: &praxis_tls::CachedCaCerts) -> Vec<pingora_core::utils
106106
cached
107107
.der_certs()
108108
.iter()
109-
.map(|der| pingora_core::utils::tls::WrappedX509::new(der.clone(), pingora_core::utils::tls::parse_x509))
109+
.map(|der| pingora_core::utils::tls::WrappedX509::parse(der.clone()))
110110
.collect()
111111
}
112112

0 commit comments

Comments
 (0)