Skip to content

Commit 15114d4

Browse files
committed
f Enable pipelining
1 parent 621794d commit 15114d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ impl<R: RetryPolicy<E = VssError>> VssClient<R> {
202202
.with_headers(headers)
203203
.with_body(request_body)
204204
.with_timeout(DEFAULT_TIMEOUT_SECS)
205-
.with_max_body_size(Some(MAX_RESPONSE_BODY_SIZE));
205+
.with_max_body_size(Some(MAX_RESPONSE_BODY_SIZE))
206+
.with_pipelining();
206207

207208
let response = self.client.send_async(http_request).await?;
208209

0 commit comments

Comments
 (0)