hive-bash-mcp: stop naming a private fn in the module's public doc

per mara review on #4249
This commit is contained in:
damocles 2026-09-11 19:09:40 +02:00 committed by mara
commit ff5106a7b4

View file

@ -19,11 +19,9 @@
//! its interrupted-done summary so the agent is not silently blocked. //! its interrupted-done summary so the agent is not silently blocked.
//! //!
//! At daemon startup, before that interrupted-marking pass, any file under //! At daemon startup, before that interrupted-marking pass, any file under
//! `tasks_dir()` older than 30 days is deleted outright — see //! `tasks_dir()` older than 30 days is deleted outright. Nothing swept
//! `sweep_old_tasks` (a plain backtick, not a `[...]` link: it's private, //! this directory before, and it had grown without bound, repeatedly
//! and this module doc is public-facing). Nothing swept this directory //! holding stale credentials in captured output.
//! 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()` //! The runner kills the child process on timeout — `tokio::process::Child::drop()`
//! does not kill children, so we explicitly call `child.kill().await`. //! does not kill children, so we explicitly call `child.kill().await`.