Skip to content

Commit

Permalink
silent closing
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Apr 11, 2024
1 parent ad0f058 commit b345ae1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion distributed/comm/tcp.py
Expand Up @@ -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)
Expand Down

0 comments on commit b345ae1

Please sign in to comment.