From ec706c09263184bde4c52c2dea2ec261658c57a0 Mon Sep 17 00:00:00 2001 From: Wintermute <165f0c871dd2586bb18b6aa109eeaf57bb2132ff4d27b10120f4368a0f627022@buzz.block.builderlab.xyz> Date: Fri, 14 Aug 2026 09:32:12 -0400 Subject: [PATCH] fix(db): allow clippy too_many_arguments on routed feed query wrappers The cursor pagination `until` parameter pushed query_feed_mentions_routed and query_feed_needs_action_routed to 8 args, tripping clippy::too_many_arguments under -D warnings. Same allow already used on the neighboring routed wrappers in this file. Co-authored-by: Thomas Petersen Signed-off-by: Thomas Petersen --- crates/buzz-db/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/buzz-db/src/lib.rs b/crates/buzz-db/src/lib.rs index d0c37b176..16e30702f 100644 --- a/crates/buzz-db/src/lib.rs +++ b/crates/buzz-db/src/lib.rs @@ -3397,6 +3397,7 @@ impl Db { /// parameter admits community-global rows alongside channel rows, so no /// single channel's fence floor can prove completeness — the covered arm /// is structurally unavailable, not merely unchosen. + #[allow(clippy::too_many_arguments)] #[datastore_span(name = "query_feed_mentions_routed", system = "postgresql")] pub async fn query_feed_mentions_routed( &self, @@ -3482,6 +3483,7 @@ impl Db { /// [`Db::query_feed_needs_action`] with replica routing — BOUNDED arm /// only; see [`Db::query_feed_mentions_routed`] for why the covered arm /// is structurally unavailable to feed queries. + #[allow(clippy::too_many_arguments)] #[datastore_span(name = "query_feed_needs_action_routed", system = "postgresql")] pub async fn query_feed_needs_action_routed( &self,