From ff5106a7b447f018eae757bbb556a2ae29260a9b Mon Sep 17 00:00:00 2001 From: damocles Date: Fri, 11 Sep 2026 19:09:40 +0200 Subject: [PATCH] hive-bash-mcp: stop naming a private fn in the module's public doc per mara review on #4249 --- hive-bash-mcp/src/runner.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/hive-bash-mcp/src/runner.rs b/hive-bash-mcp/src/runner.rs index 5a0e6e06..00879352 100644 --- a/hive-bash-mcp/src/runner.rs +++ b/hive-bash-mcp/src/runner.rs @@ -19,11 +19,9 @@ //! its interrupted-done summary so the agent is not silently blocked. //! //! At daemon startup, before that interrupted-marking pass, any file under -//! `tasks_dir()` older than 30 days is deleted outright — see -//! `sweep_old_tasks` (a plain backtick, not a `[...]` link: it's private, -//! and this module doc is public-facing). Nothing swept this directory -//! before, and it had grown without bound, repeatedly holding stale -//! credentials in captured output. +//! `tasks_dir()` older than 30 days is deleted outright. Nothing swept +//! this directory before, and it had grown without bound, repeatedly +//! holding stale credentials in captured output. //! //! The runner kills the child process on timeout — `tokio::process::Child::drop()` //! does not kill children, so we explicitly call `child.kill().await`.