From b5410d46137727e591c962d28790394e2014c001 Mon Sep 17 00:00:00 2001 From: damocles Date: Mon, 8 Jun 2026 08:17:33 +0200 Subject: [PATCH] chore: drop two more stale clippy allows (ContainerView bools, journal too_many_lines) --- hive-c0re/src/container_view.rs | 1 - hive-priv/src/main.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/hive-c0re/src/container_view.rs b/hive-c0re/src/container_view.rs index cf01d0bc..70109357 100644 --- a/hive-c0re/src/container_view.rs +++ b/hive-c0re/src/container_view.rs @@ -14,7 +14,6 @@ use crate::coordinator::Coordinator; use crate::lifecycle::{self, AGENT_PREFIX}; #[derive(Serialize, Clone, PartialEq, Eq, Debug)] -#[allow(clippy::struct_excessive_bools)] pub struct ContainerView { /// Logical agent name (no `h-` prefix). Used in action URLs. pub name: String, diff --git a/hive-priv/src/main.rs b/hive-priv/src/main.rs index e46cc78e..49ba82a3 100644 --- a/hive-priv/src/main.rs +++ b/hive-priv/src/main.rs @@ -606,7 +606,7 @@ async fn container_run_streaming( /// hard error — journalctl's own diagnostic (folded into `stderr` with /// the exit status) is what the caller surfaces to the operator, so the /// helper never bails. -#[allow(clippy::too_many_arguments, clippy::too_many_lines)] +#[allow(clippy::too_many_arguments)] async fn read_container_journal( container: &str, lines: u32,