mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-24 10:03:27 +01:00
Using \GuzzleHttp\Client without cURL being installed falls back to the StreamHandler. As documented, guzzle uses a `timeout => 0` setting by default, if that setting isn't explicitly passed as option. This value is passed to the context of the stream, causing every request to fail instantly as `timeout => 0` has a different meaning for streams. Fixes #1487