We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08f49b commit decb65cCopy full SHA for decb65c
aiohttp/connector.py
@@ -1229,8 +1229,9 @@ async def _wrap_create_connection(
1229
if self._happy_eyeballs_delay is None:
1230
# If happyeyeballs is disabled, connect in sequence
1231
# this avoids a bug in uvloop where it can lose track
1232
- # of sockets passed between aiohappyeyeballs.start_connect
1233
- # and create_connection and try to reuse the same fd.
+ # of sockets passed directly to create_connection and
+ # try to reuse the same fd. The problem does not
1234
+ # happen when passing host/port to create_connection.
1235
# https://github.com/aio-libs/aiohttp/issues/10506
1236
# https://github.com/MagicStack/uvloop/issues/645
1237
first_addr_infos = addr_infos[0]
0 commit comments