Reuse reqwest client on broadcasting

See https://users.rust-lang.org/t/reqwest-http-client-fails-when-too-much-concurrency/55644/2
This commit is contained in:
Kitaiti Makoto 2022-05-04 04:22:50 +09:00
parent ef57ef91f0
commit db0f1a3c46
1 changed files with 28 additions and 27 deletions

View File

@ -132,6 +132,14 @@ where
.sign(sender)
.expect("activity_pub::broadcast: signature error");
let client = if let Some(proxy) = proxy.clone() {
ClientBuilder::new().proxy(proxy)
} else {
ClientBuilder::new()
}
.connect_timeout(std::time::Duration::from_secs(5))
.build()
.expect("Can't build client");
let mut rt = tokio::runtime::current_thread::Runtime::new()
.expect("Error while initializing tokio runtime for federation");
for inbox in boxes {
@ -155,14 +163,7 @@ where
headers.insert("Host", host_header_value.unwrap());
headers.insert("Digest", request::Digest::digest(&body));
rt.spawn(
if let Some(proxy) = proxy.clone() {
ClientBuilder::new().proxy(proxy)
} else {
ClientBuilder::new()
}
.connect_timeout(std::time::Duration::from_secs(5))
.build()
.expect("Can't build client")
client
.post(&inbox)
.headers(headers.clone())
.header(