From b345ae1d12a66be303c52fc003922ac63f678d09 Mon Sep 17 00:00:00 2001 From: fjetter Date: Thu, 11 Apr 2024 15:58:15 +0200 Subject: [PATCH] silent closing --- distributed/comm/tcp.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distributed/comm/tcp.py b/distributed/comm/tcp.py index c741aba83e9..b395ff52378 100644 --- a/distributed/comm/tcp.py +++ b/distributed/comm/tcp.py @@ -665,7 +665,9 @@ async def _handle_stream(self, stream, address): try: await self.on_connection(comm) except CommClosedError: - logger.info("Connection from %s closed before handshake completed", address) + logger.debug( + "Connection from %s closed before handshake completed", address + ) return await self.comm_handler(comm)