Skip to content

Commit

Permalink
http client: remove unsed max-concurrent-requests
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Oct 8, 2024
1 parent b3d548e commit 0ddd9ec
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions client/http-client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ pub struct HttpClientBuilder<L = Identity> {
max_request_size: u32,
max_response_size: u32,
request_timeout: Duration,
max_concurrent_requests: usize,
#[cfg(feature = "tls")]
certificate_store: CertificateStore,
id_kind: IdKind,
Expand Down Expand Up @@ -216,7 +215,6 @@ impl<L> HttpClientBuilder<L> {
id_kind: self.id_kind,
headers: self.headers,
max_log_length: self.max_log_length,
max_concurrent_requests: self.max_concurrent_requests,
max_request_size: self.max_request_size,
max_response_size: self.max_response_size,
service_builder,
Expand Down Expand Up @@ -273,7 +271,6 @@ impl Default for HttpClientBuilder<Identity> {
max_request_size: TEN_MB_SIZE_BYTES,
max_response_size: TEN_MB_SIZE_BYTES,
request_timeout: Duration::from_secs(60),
max_concurrent_requests: 256,
#[cfg(feature = "tls")]
certificate_store: CertificateStore::Native,
id_kind: IdKind::Number,
Expand Down

0 comments on commit 0ddd9ec

Please sign in to comment.