Conversation
Withtout the rustls-tls feature for the openidconnect the login command fails
|
|
||
| [features] | ||
| default = ["reqwest/default-tls"] # link against system library | ||
| rustls = ["reqwest/rustls-tls", "openidconnect/rustls-tls"] # include rustls, ssl library written in rust |
There was a problem hiding this comment.
the dependency is actually there, I'm not sure what hasn't been working?
There was a problem hiding this comment.
@eikek on my computer (linux, fedora, amd processor) I cannot log into renku when I run cargo run -- login.
This fixes it.
There was a problem hiding this comment.
Can you try with:
cargo run --features rustls -- login
this would select the "rustls" feature that already configures this dependency. The default feature would link against the openssl system library. Why this is not working anymore, needs to be investigated - strange to me right now.
There was a problem hiding this comment.
@olevski I tried something on this branch. Apparently, if I add the oauth2 crate explicitly (it is pulled in by openidconnect), the login command works on my machine again.
There was a problem hiding this comment.
@eikek your branch fixes the problem. So can you open a PR for it and I will close this one.
Withtout the rustls-tls feature for the openidconnect the login command fails