Azure / azure-sdk-for-rust

This repository is for active development of the *unofficial* Azure SDK for Rust. This repository is *not* supported by the Azure SDK team.
MIT License
685 stars 232 forks source link

work around hang issue in hyper #1550

Closed demoray closed 6 months ago

demoray commented 6 months ago

As indicated in #1549, there is an issue with hyper (the underlying layer used by reqwest) that hangs in some cases on connection pools.

This PR uses a commonly discussed workaround of setting pool_max_idle_per_host to 0.

Ref: https://github.com/hyperium/hyper/issues/2312

Mitigates #1549