Skip to content

Commit f885633

Browse files
authored
fix(ci): increase pool_max_idle_per_host (#19241)
1 parent 6aa4a6b commit f885633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sqllogictests/src/client/http_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl HttpClient {
124124
.default_headers(header)
125125
// https://github.com/hyperium/hyper/issues/2136#issuecomment-589488526
126126
.http2_keep_alive_timeout(Duration::from_secs(15))
127-
.pool_max_idle_per_host(0)
127+
.pool_max_idle_per_host(16)
128128
.build()?;
129129

130130
let url = format!("http://127.0.0.1:{}/v1/session/login", port);

0 commit comments

Comments
 (0)