From 3f1b98654efb486cebfa4350ca3b847725c4061a Mon Sep 17 00:00:00 2001 From: Gabe Joseph Date: Wed, 8 Jun 2022 19:18:10 -0600 Subject: [PATCH] Fix `test_quiet_client_close` Closes https://github.com/dask/distributed/issues/6540 --- distributed/tests/test_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distributed/tests/test_client.py b/distributed/tests/test_client.py index 61eeb72987d..28d490f15b5 100644 --- a/distributed/tests/test_client.py +++ b/distributed/tests/test_client.py @@ -4914,7 +4914,8 @@ def test_quiet_client_close(loop): for line in lines: assert ( not line - or "Reconnecting" in line + or "heartbeat from unregistered worker" in line + or "unaware of this worker" in line or "garbage" in line or set(line) == {"-"} ), line