From 061eb642c913b6f1ff2500f4d2c2270d727ef3b1 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Fri, 17 Jul 2026 09:13:59 +0200 Subject: [PATCH] =?UTF-8?q?fix(engine):=20clippy=20doc=5Flazy=5Fcontinuati?= =?UTF-8?q?on=20=E2=80=94=20PendingPoll::Failed=20note=20is=20its=20own=20?= =?UTF-8?q?paragraph,=20not=20a=20list=20continuation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- server/src/bridge/mod.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/server/src/bridge/mod.rs b/server/src/bridge/mod.rs index d285fba8e..980cb7d61 100644 --- a/server/src/bridge/mod.rs +++ b/server/src/bridge/mod.rs @@ -903,10 +903,11 @@ pub struct PendingConnections(pub Vec); /// separate ambition, not this ticket's). /// - `Reader` → installed as a new Reader connection, always (0-N /// readers is the whole point of this ticket). -/// `PendingPoll::Failed` connections (EOF before completing handshake, -/// malformed startup, etc.) are simply dropped — never logged as errors -/// at more than `warn` level, since an incomplete handshake from a -/// probing/misbehaving client is an expected occurrence, not a bug. +/// +/// `PendingPoll::Failed` connections (EOF before completing handshake, +/// malformed startup, etc.) are simply dropped — never logged as errors +/// at more than `warn` level, since an incomplete handshake from a +/// probing/misbehaving client is an expected occurrence, not a bug. pub fn accept_new_connections( listener: Option>, mut pending: Option>,