mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
fix(client): Fix ordering of evaluations
This commit is contained in:
parent
9e2dc50d6e
commit
3323c0273c
2 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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! {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue