We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 621794d commit 15114d4Copy full SHA for 15114d4
src/client.rs
@@ -202,7 +202,8 @@ impl<R: RetryPolicy<E = VssError>> VssClient<R> {
202
.with_headers(headers)
203
.with_body(request_body)
204
.with_timeout(DEFAULT_TIMEOUT_SECS)
205
- .with_max_body_size(Some(MAX_RESPONSE_BODY_SIZE));
+ .with_max_body_size(Some(MAX_RESPONSE_BODY_SIZE))
206
+ .with_pipelining();
207
208
let response = self.client.send_async(http_request).await?;
209
0 commit comments