-
dear kube-rs community, I have upgraded my kube crate and hyper and tower and my code does not compile any more.
and this is the compilation error
Cargo.toml
I copied the code from this example https://github.com/kube-rs/kube/blob/main/examples/custom_client_tls.rs#L27-L32 any idea on how to solve this? thank you |
Beta Was this translation helpful? Give feedback.
Answered by
clux
Oct 25, 2024
Replies: 1 comment
-
Thanks for the issue. This is actually a bug in the example (it was accidentally excluded from CI due to needing --all-features). It is fixed in #1619. Basically; add |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Masber
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the issue. This is actually a bug in the example (it was accidentally excluded from CI due to needing --all-features). It is fixed in #1619.
Basically; add
.map_err(tower::BoxError::from)
after theoption_layer
.