We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba74cac commit 13f1e41Copy full SHA for 13f1e41
mullvad-api/src/ffi/mod.rs
@@ -68,6 +68,10 @@ impl FfiClient {
68
)
69
})?;
70
71
+ std::env::set_var(crate::env::API_HOST_VAR, &api_hostname);
72
+ std::env::set_var(crate::env::API_ADDR_VAR, &addr_str);
73
+ std::env::set_var(crate::env::API_FORCE_DIRECT_VAR, "0");
74
+ std::env::set_var(crate::env::DISABLE_TLS_VAR, "0");
75
let mut runtime_builder = tokio::runtime::Builder::new_multi_thread();
76
77
runtime_builder.worker_threads(2).enable_all();
0 commit comments