We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab6f32 commit 20716d3Copy full SHA for 20716d3
ui/src/main.rs
@@ -34,7 +34,8 @@ use env::{PLAYGROUND_GITHUB_TOKEN, PLAYGROUND_UI_ROOT};
34
fn main() {
35
// Dotenv may be unable to load environment variables, but that's ok in production
36
let _ = dotenv::dotenv();
37
- openssl_probe::init_ssl_cert_env_vars();
+ // SAFETY: We have not started any other threads yet.
38
+ unsafe { openssl_probe::init_openssl_env_vars(); }
39
40
// Info-level logging is enabled by default.
41
tracing_subscriber::fmt()
0 commit comments