You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add more SETTINGS frame options
* Disable the default frame
* fix(http): divide by zero error when dividing duration by scalar
Consider addrs length is 0.
From issue: seanmonstar/reqwest#2003
* fix(client): panic when pool idle timeout set to zero
From issue: hyperium/hyper#2997
* deps(h2): bump version to v0.4.2
* deps(http-body): bump version to v0.4.6
* deps(httpdate): bump version to v1.0.3
* feat(client): Add reset connection pool idle status
* feat(client): export deref to connector
* feat: Allow binding interface (#3)
* deps(lib): Export `h2::profile::AgentProfile` (#5)
* deps(http): Pin version v0.2
---------
Co-authored-by: 4JX <[email protected]>
Version
hyper v0.14.20
,h2 v0.3.14
,tokio v1.21.2
Platform
Linux seekr-xps15-zorin 5.13.0-35-generic #40~20.04.1-Ubuntu SMP Mon Mar 7 09:18:32 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
Description
Passing in
Some(Duration::ZERO)
tohyper::client::Builder::pool_idle_timeout()
can lead to a panic. The panic happens in thetokio::time::interval()
function, which disallows specifying a zero duration.I have switched my code to use
builder.pool_max_idle_per_host(0)
instead, which works properly.The text was updated successfully, but these errors were encountered: