Skip to content

Commit

Permalink
restore support for yield unsafe Client context managers
Browse files Browse the repository at this point in the history
Fixes #7984
  • Loading branch information
graingert committed Jul 12, 2023
1 parent 6c37907 commit 5952e30
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 2 deletions.
24 changes: 22 additions & 2 deletions distributed/client.py
Expand Up @@ -1502,7 +1502,17 @@ async def __aenter__(self):

async def __aexit__(self, exc_type, exc_value, traceback):
if self._previous_as_current:
_current_client.reset(self._previous_as_current)
try:
_current_client.reset(self._previous_as_current)
except ValueError as e:
if not e.args[0].endswith(" was created in a different Context"):
raise

Check warning on line 1509 in distributed/client.py

View check run for this annotation

Codecov / codecov/patch

distributed/client.py#L1509

Added line #L1509 was not covered by tests
warnings.warn(
"It is deprecated to enter and exit the Client context "
"manager from different tasks",
DeprecationWarning,
stacklevel=2,
)
await self._close(
# if we're handling an exception, we assume that it's more
# important to deliver that exception than shutdown gracefully.
Expand All @@ -1512,7 +1522,17 @@ async def __aexit__(self, exc_type, exc_value, traceback):

def __exit__(self, exc_type, exc_value, traceback):
if self._previous_as_current:
_current_client.reset(self._previous_as_current)
try:
_current_client.reset(self._previous_as_current)
except ValueError as e:
if not e.args[0].endswith(" was created in a different Context"):
raise

Check warning on line 1529 in distributed/client.py

View check run for this annotation

Codecov / codecov/patch

distributed/client.py#L1529

Added line #L1529 was not covered by tests
warnings.warn(
"It is deprecated to enter and exit the Client context "
"manager from different threads",
DeprecationWarning,
stacklevel=2,
)
self.close()

def __del__(self):
Expand Down
27 changes: 27 additions & 0 deletions distributed/tests/test_client.py
Expand Up @@ -1274,6 +1274,33 @@ async def client_2():
await asyncio.gather(client_1(), client_2())


@gen_cluster(client=False, nthreads=[])
async def test_context_manager_used_from_different_tasks(s):
c = Client(s.address, asynchronous=True)
await asyncio.create_task(c.__aenter__())
with pytest.warns(
DeprecationWarning,
match=r"It is deprecated to enter and exit the Client context manager "
"from different tasks",
):
await asyncio.create_task(c.__aexit__(None, None, None))


def test_context_manager_used_from_different_threads(s, loop):
c = Client(s["address"])
with (
concurrent.futures.ThreadPoolExecutor(1) as tp1,
concurrent.futures.ThreadPoolExecutor(1) as tp2,
):
tp1.submit(c.__enter__).result()
with pytest.warns(
DeprecationWarning,
match=r"It is deprecated to enter and exit the Client context manager "
"from different threads",
):
tp2.submit(c.__exit__, None, None, None).result()


def test_global_clients(loop):
assert _get_global_client() is None
with pytest.raises(
Expand Down

0 comments on commit 5952e30

Please sign in to comment.