diff options
author | Federico Caselli <cfederico87@gmail.com> | 2022-06-17 23:12:39 +0200 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-07-18 11:33:34 -0400 |
commit | 1acaf0b2e4859a274e753b5054dcde3d5c7ca10e (patch) | |
tree | d70c74d7b40e8afa6676c24b0f202e9d53c3df0d /lib/sqlalchemy/ext | |
parent | c3102b85c40ab4578a0f56ee1e8eee4a6e0aed55 (diff) | |
download | sqlalchemy-1acaf0b2e4859a274e753b5054dcde3d5c7ca10e.tar.gz |
add shield() in aexit
Added ``asyncio.shield()`` to the connection and session release process
specifically within the ``__aexit__()`` context manager exit, when using
:class:`.AsyncConnection` or :class:`.AsyncSession` as a context manager
that releases the object when the context manager is complete. This appears
to help with task cancellation when using alternate concurrency libraries
such as ``anyio``, ``uvloop`` that otherwise don't provide an async context
for the connection pool to release the connection properly during task
cancellation.
Fixes: #8145
Change-Id: I0b1ea9c3a22a18619341cbb8591225fcd339042c
Diffstat (limited to 'lib/sqlalchemy/ext')
-rw-r--r-- | lib/sqlalchemy/ext/asyncio/engine.py | 12 | ||||
-rw-r--r-- | lib/sqlalchemy/ext/asyncio/session.py | 12 |
2 files changed, 16 insertions, 8 deletions
diff --git a/lib/sqlalchemy/ext/asyncio/engine.py b/lib/sqlalchemy/ext/asyncio/engine.py index 97d69fcbd..796ddccf5 100644 --- a/lib/sqlalchemy/ext/asyncio/engine.py +++ b/lib/sqlalchemy/ext/asyncio/engine.py @@ -6,6 +6,7 @@ # the MIT License: https://www.opensource.org/licenses/mit-license.php from __future__ import annotations +import asyncio from typing import Any from typing import Dict from typing import Generator @@ -698,7 +699,7 @@ class AsyncConnection( return self.start().__await__() async def __aexit__(self, type_: Any, value: Any, traceback: Any) -> None: - await self.close() + await asyncio.shield(self.close()) # START PROXY METHODS AsyncConnection @@ -855,8 +856,11 @@ class AsyncEngine(ProxyComparable[Engine], AsyncConnectable): async def __aexit__( self, type_: Any, value: Any, traceback: Any ) -> None: - await self.transaction.__aexit__(type_, value, traceback) - await self.conn.close() + async def go() -> None: + await self.transaction.__aexit__(type_, value, traceback) + await self.conn.close() + + await asyncio.shield(go()) def __init__(self, sync_engine: Engine): if not sync_engine.dialect.is_async: @@ -956,7 +960,7 @@ class AsyncEngine(ProxyComparable[Engine], AsyncConnectable): """ - return await greenlet_spawn(self.sync_engine.dispose, close=close) + await greenlet_spawn(self.sync_engine.dispose, close=close) # START PROXY METHODS AsyncEngine diff --git a/lib/sqlalchemy/ext/asyncio/session.py b/lib/sqlalchemy/ext/asyncio/session.py index be3414cef..14e08b5c5 100644 --- a/lib/sqlalchemy/ext/asyncio/session.py +++ b/lib/sqlalchemy/ext/asyncio/session.py @@ -6,6 +6,7 @@ # the MIT License: https://www.opensource.org/licenses/mit-license.php from __future__ import annotations +import asyncio from typing import Any from typing import Dict from typing import Generic @@ -837,7 +838,7 @@ class AsyncSession(ReversibleProxy[Session]): :meth:`_asyncio.AsyncSession.close` """ - return await greenlet_spawn(self.sync_session.close) + await greenlet_spawn(self.sync_session.close) async def invalidate(self) -> None: """Close this Session, using connection invalidation. @@ -855,7 +856,7 @@ class AsyncSession(ReversibleProxy[Session]): return self async def __aexit__(self, type_: Any, value: Any, traceback: Any) -> None: - await self.close() + await asyncio.shield(self.close()) def _maker_context_manager(self: _AS) -> _AsyncSessionContextManager[_AS]: return _AsyncSessionContextManager(self) @@ -1516,8 +1517,11 @@ class _AsyncSessionContextManager(Generic[_AS]): return self.async_session async def __aexit__(self, type_: Any, value: Any, traceback: Any) -> None: - await self.trans.__aexit__(type_, value, traceback) - await self.async_session.__aexit__(type_, value, traceback) + async def go() -> None: + await self.trans.__aexit__(type_, value, traceback) + await self.async_session.__aexit__(type_, value, traceback) + + await asyncio.shield(go()) class AsyncSessionTransaction( |