- 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: