We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab6f32 commit 2b013d1Copy full SHA for 2b013d1
ui/src/main.rs
@@ -34,7 +34,10 @@ 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 {
39
+ openssl_probe::init_openssl_env_vars();
40
+ }
41
42
// Info-level logging is enabled by default.
43
tracing_subscriber::fmt()
0 commit comments