- Issue created by @Jim Bacon
- π³π±Netherlands boazpoolman
I hate to come by and just say "same issue here", but that's about the gist of it.
If I can assist with resolving the issue (with some guidance of the maintainer) feel free to reach out!
For now we've just locked the `guzzlehttp/guzzle` library to 7.8.
- πΊπΈUnited States adriancotter
I had this issue with the update to Core 10.4
I have used Jim's fix that for my custom module's plugins adding a preprocessOutgoingRequestOptions.For those of you who don't already have that function (like myself), that ends up looking like this:
public function preprocessOutgoingRequestOptions(Request|array $options): array { if ( isset($options['version']) && substr($options['version'], 0, 5) == 'HTTP/' ) { $options['version'] = substr($options['version'], 5); } return $options; }
- First commit to issue fork.
- Merge request !14fix: patch for issue 3463730 - strip HTTP/ from version β (Open) created by Unnamed author
Strangely enough, I can't reproduce the error even after updating Guzzle HTTP, but in any case I made a fork and here's also a patch:
- πΊπΈUnited States jhedstrom Portland, OR
We started seeing this as well, and once we applied the fix in #6, started seeing a different error, that may be related to this Guzzle upgrade:
transfer closed with outstanding read data remaining
This was specific to an API being called that set the header
Transfer-Encoding: chunked
Removing this header in our API proxy plugin resolved the issue.
- π·π΄Romania alex.stanciu
Can confirm the problem appeared after an upgrade to Drupal 10.4 (which in turn bumped the Guzzle version) and patch #6 fixed the problem. Tested on multiple sites.