fix(client): Fix ordering of evaluations

This commit is contained in:
Matthew Esposito 2024-09-23 10:47:53 -04:00
parent 9e2dc50d6e
commit 3323c0273c
2 changed files with 3 additions and 2 deletions

View file

@ -48,6 +48,7 @@ pub fn generate_client(no_https_verification: bool) -> Client<HttpsConnector<Htt
// If https verification is disabled for debug purposes, create a custom ClientConfig
#[cfg(feature = "no-https-verification")]
let https = if no_https_verification {
log::warn!("HTTPS verification is disabled.");
use rustls::ClientConfig;
use std::sync::Arc;

View file

@ -194,14 +194,14 @@ async fn main() {
// in OAUTH case, we need to retrieve the token to avoid paying penalty
// at first request
info!("Creating HTTP client.");
CLIENT.set(generate_client(no_https_verification)).unwrap();
info!("Evaluating config.");
Lazy::force(&config::CONFIG);
info!("Evaluating instance info.");
Lazy::force(&instance_info::INSTANCE_INFO);
info!("Creating OAUTH client.");
Lazy::force(&OAUTH_CLIENT);
info!("Creating HTTP client.");
CLIENT.set(generate_client(no_https_verification)).unwrap();
// Define default headers (added to all responses)
app.default_headers = headers! {