mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
parent
5a8c894359
commit
81aa39ba68
@ -31,7 +31,7 @@ use lemmy_websocket::{chat_server::ChatServer, LemmyContext};
|
||||
use reqwest::Client;
|
||||
use reqwest_middleware::ClientBuilder;
|
||||
use reqwest_tracing::TracingMiddleware;
|
||||
use std::{env, sync::Arc, thread};
|
||||
use std::{env, sync::Arc, thread, time::Duration};
|
||||
use tokio::sync::Mutex;
|
||||
use tracing_actix_web::TracingLogger;
|
||||
|
||||
@ -96,6 +96,7 @@ async fn main() -> Result<(), LemmyError> {
|
||||
|
||||
let client = Client::builder()
|
||||
.user_agent(build_user_agent(&settings))
|
||||
.timeout(Duration::from_secs(10))
|
||||
.build()?;
|
||||
|
||||
let client = ClientBuilder::new(client).with(TracingMiddleware).build();
|
||||
|
Loading…
Reference in New Issue
Block a user