From 916c0b11c5b32069bb2b9ffe697b3955bb4f75ec Mon Sep 17 00:00:00 2001 From: damocles Date: Fri, 26 Jun 2026 17:21:30 +0200 Subject: [PATCH] fix(#2003): drop issue tag from inline comment (tracker-tag lint) --- hive-c0re/src/auto_update.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hive-c0re/src/auto_update.rs b/hive-c0re/src/auto_update.rs index 43c0f247..0388cfe8 100644 --- a/hive-c0re/src/auto_update.rs +++ b/hive-c0re/src/auto_update.rs @@ -198,10 +198,10 @@ pub async fn ensure_root_agent(coord: &Arc) -> Result<()> { // The root/manager is required infrastructure — it must be running // after every hive-c0re (re)start. A previous bring-up can leave it // *created but stopped* (e.g. a first-start failure on a fresh - // install, #2003): the startup sweep's rebuild only restarts a - // container that was already running, so without this it stays down - // until a manual `nixos-container start`. Unlike sub-agents there is - // no "deliberately stopped root" intent to honour, so start it + // install): the startup sweep's rebuild only restarts a container + // that was already running, so without this it stays down until a + // manual `nixos-container start`. Unlike sub-agents there is no + // "deliberately stopped root" intent to honour, so start it // unconditionally when it isn't running. if !lifecycle::is_running(MANAGER_NAME).await { tracing::info!("manager container present but not running — starting");