Skip to content

Commit 565964d

Browse files
committed
Merge branch '7.3' into 7.4
* 7.3: return early if handle has been cleaned up before Update sponsors for Symfony 7.3
2 parents b792636 + 83e5fb0 commit 565964d

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

README.md

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,13 @@ Installation
1717
Sponsor
1818
-------
1919

20-
Symfony 7.2 is [backed][27] by
21-
- [Sulu][29]
22-
- [Rector][30]
20+
Symfony 7.3 is [backed][27] by
21+
- [Les-Tilleuls.coop][29]
2322

24-
**Sulu** is the CMS for Symfony developers. It provides pre-built content-management
25-
features while giving developers the freedom to build, deploy, and maintain custom
26-
solutions using full-stack Symfony. Sulu is ideal for creating complex websites,
27-
integrating external tools, and building custom-built solutions.
28-
29-
**Rector** helps successful and growing companies to get the most of the code
30-
they already have. Including upgrading to the latest Symfony LTS. They deliver
31-
automated refactoring, reduce maintenance costs, speed up feature delivery, and
32-
transform legacy code into a strategic asset. They can handle the dirty work,
33-
so you can focus on the features.
23+
**Les-Tilleuls.coop** is a team of 70+ Symfony experts who can help you design, develop and
24+
fix your projects. They provide a wide range of professional services including development,
25+
consulting, coaching, training and audits. They also are highly skilled in JS, Go and DevOps.
26+
They are a worker cooperative!
3427

3528
Help Symfony by [sponsoring][28] its development!
3629

@@ -96,5 +89,4 @@ and supported by [Symfony contributors][19].
9689
[26]: https://symfony.com/book
9790
[27]: https://symfony.com/backers
9891
[28]: https://symfony.com/sponsor
99-
[29]: https://sulu.io
100-
[30]: https://getrector.com
92+
[29]: https://les-tilleuls.coop

src/Symfony/Component/HttpClient/Response/AmpResponseV5.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,10 @@ private static function generateResponse(Request $request, AmpClientStateV5 $mul
240240
$body = $response->getBody();
241241

242242
while (true) {
243+
if (!isset($multi->openHandles[$id])) {
244+
return;
245+
}
246+
243247
$multi->openHandles[$id]->complete();
244248
$multi->openHandles[$id] = new DeferredFuture();
245249

0 commit comments

Comments
 (0)