Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix connector #2567

Merged
merged 6 commits into from
Nov 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/2567.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Return client connection back to free pool on error in `connector.connect()`.
26 changes: 17 additions & 9 deletions aiohttp/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,15 @@ def _cleanup(self):
self._cleanup_handle = helpers.weakref_handle(
self, '_cleanup', timeout, self._loop)

def _drop_acquired_per_host(self, key, val):
acquired_per_host = self._acquired_per_host
if key not in acquired_per_host:
return
conns = acquired_per_host[key]
conns.remove(val)
if not conns:
del self._acquired_per_host[key]

def _cleanup_closed(self):
"""Double confirmation for transport close.
Some broken ssl servers may leave socket open without proper close.
Expand Down Expand Up @@ -354,7 +363,7 @@ def connect(self, req):

if self._limit:
# total calc available connections
available = self._limit - len(self._waiters) - len(self._acquired)
available = self._limit - len(self._acquired)

# check limit per host
if (self._limit_per_host and available > 0 and
Expand Down Expand Up @@ -396,15 +405,16 @@ def connect(self, req):
raise ClientConnectionError("Connector is closed.")
except:
# signal to waiter
for waiter in self._waiters[key]:
if not waiter.done():
waiter.set_result(None)
break
if key in self._waiters:
for waiter in self._waiters[key]:
if not waiter.done():
waiter.set_result(None)
break
raise
finally:
if not self._closed:
self._acquired.remove(placeholder)
self._acquired_per_host[key].remove(placeholder)
self._drop_acquired_per_host(key, placeholder)

self._acquired.add(proto)
self._acquired_per_host[key].add(proto)
Expand Down Expand Up @@ -463,9 +473,7 @@ def _release_acquired(self, key, proto):

try:
self._acquired.remove(proto)
self._acquired_per_host[key].remove(proto)
if not self._acquired_per_host[key]:
del self._acquired_per_host[key]
self._drop_acquired_per_host(key, proto)
except KeyError: # pragma: no cover
# this may be result of undetermenistic order of objects
# finalization due garbage collection.
Expand Down
60 changes: 60 additions & 0 deletions tests/test_client_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -2288,3 +2288,63 @@ def close(self):
assert resp.status == 200
finally:
yield from client.close()


@asyncio.coroutine
def test_error_in_performing_request(loop, ssl_ctx,
test_client, test_server):
@asyncio.coroutine
def handler(request):
return web.Response()

app = web.Application()
app.router.add_route('GET', '/', handler)

server = yield from test_server(app, ssl=ssl_ctx)

conn = aiohttp.TCPConnector(limit=1, loop=loop)
client = yield from test_client(server, connector=conn)

with pytest.raises(aiohttp.ClientConnectionError):
yield from client.get('/')

# second try should not hang
with pytest.raises(aiohttp.ClientConnectionError):
yield from client.get('/')


@asyncio.coroutine
def test_await_after_cancelling(loop, test_client):
@asyncio.coroutine
def handler(request):
return web.Response()

app = web.Application()
app.router.add_route('GET', '/', handler)

client = yield from test_client(app)

fut1 = create_future(loop)
fut2 = create_future(loop)

@asyncio.coroutine
def fetch1():
resp = yield from client.get('/')
assert resp.status == 200
fut1.set_result(None)
with pytest.raises(asyncio.CancelledError):
yield from fut2
resp.release()

@asyncio.coroutine
def fetch2():
yield from fut1
resp = yield from client.get('/')
assert resp.status == 200

@asyncio.coroutine
def canceller():
yield from fut1
fut2.cancel()

yield from asyncio.gather(fetch1(), fetch2(), canceller(), loop=loop)
22 changes: 22 additions & 0 deletions tests/test_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,28 @@ def test_release_close(loop):
assert proto.close.called


def test__drop_acquire_per_host1(loop):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@asvetlov is this double__underscore notation intentional?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. It is a test for _drop_acquire_per_host method.

conn = aiohttp.BaseConnector(loop=loop)
conn._drop_acquired_per_host(123, 456)
assert len(conn._acquired_per_host) == 0


def test__drop_acquire_per_host2(loop):
conn = aiohttp.BaseConnector(loop=loop)
conn._acquired_per_host[123].add(456)
conn._drop_acquired_per_host(123, 456)
assert len(conn._acquired_per_host) == 0


def test__drop_acquire_per_host3(loop):
conn = aiohttp.BaseConnector(loop=loop)
conn._acquired_per_host[123].add(456)
conn._acquired_per_host[123].add(789)
conn._drop_acquired_per_host(123, 456)
assert len(conn._acquired_per_host) == 1
assert conn._acquired_per_host[123] == {789}


@asyncio.coroutine
def test_tcp_connector_certificate_error(loop):
req = ClientRequest('GET', URL('https://127.0.0.1:443'), loop=loop)
Expand Down